Browse Source

Update .drone.yml

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
82f8a0aeba
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      .drone.yml

+ 26
- 0
.drone.yml View 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


Loading…
Cancel
Save