Update .drone.yml
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Sat, 15 Aug 2020 13:46:18 +0000 (15:46 +0200)
committerGitHub <noreply@github.com>
Sat, 15 Aug 2020 13:46:18 +0000 (15:46 +0200)
.drone.yml

index fb009d4..e8353eb 100644 (file)
@@ -166,6 +166,32 @@ steps:
     - make -C ctest $COMMON_FLAGS
     - make -C utest $COMMON_FLAGS
     - make -C cpp_thread_test dgemm_tester
+    - make -C cpp_thread_test gemm64
+---
+kind: pipeline
+name: arm64_native_test_int64
+
+platform:
+  os: linux
+  arch: arm64
+
+steps:
+- name: Build and Test
+  image: ubuntu:18.04
+  environment:
+    CC: gcc
+    COMMON_FLAGS: 'USE_OPENMP=1 INTERFACE64=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
+    - make -C cpp_thread_test gemm64
 ---
 kind: pipeline
 name: epyc_native_test