Add a multithread test for x86_64
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Mon, 13 Apr 2020 20:46:12 +0000 (22:46 +0200)
committerGitHub <noreply@github.com>
Mon, 13 Apr 2020 20:46:12 +0000 (22:46 +0200)
.drone.yml

index 3bbd8fc..300cf32 100644 (file)
@@ -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