diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2020-04-13 22:46:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 22:46:12 +0200 |
commit | 0f08f3efa62558e104ae3e71e0470c5cd286a1d2 (patch) | |
tree | 2e30927abec2ccf82991b1c3423e6e44f7579381 /.drone.yml | |
parent | 20d0cb2f655204fba74f7a4af1cf307f6fddc56d (diff) | |
download | openblas-0f08f3efa62558e104ae3e71e0470c5cd286a1d2.tar.gz openblas-0f08f3efa62558e104ae3e71e0470c5cd286a1d2.tar.bz2 openblas-0f08f3efa62558e104ae3e71e0470c5cd286a1d2.zip |
Add a multithread test for x86_64
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 3bbd8fc88..300cf3254 100644 --- a/.drone.yml +++ b/.drone.yml @@ -166,3 +166,27 @@ steps: - make -C ctest $COMMON_FLAGS - make -C utest $COMMON_FLAGS - make -C cpp_thread_test dgemm_tester +--- +kind: pipeline +name: epyc_native_test + +platform: + os: linux + arch: amd64 + +steps: +- name: Build and Test + image: ubuntu:19.04 + environment: + CC: gcc + COMMON_FLAGS: 'USE_OPENMP=1' + commands: + - echo "MAKE_FLAGS:= $COMMON_FLAGS" + - apt-get update -y + - apt-get install -y make $CC gfortran perl python g++ + - $CC --version + - make QUIET_MAKE=1 $COMMON_FLAGS + - make -C test $COMMON_FLAGS + - make -C ctest $COMMON_FLAGS + - make -C utest $COMMON_FLAGS + - make -C cpp_thread_test dgemm_tester |