Browse Source

Try to get an all-core lapack test to identify barrier issues

pull/2544/head
Martin Kroeker GitHub 6 years ago
parent
commit
8639c8a683
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions
  1. +25
    -0
      .drone.yml

+ 25
- 0
.drone.yml View File

@@ -141,3 +141,28 @@ steps:
- cmake $CMAKE_FLAGS ..
- make -j
- ctest -V

---
kind: pipeline
name: arm64_native_test

platform:
os: linux
arch: arm64

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
- $CC --version
- make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS
- make -C utest $COMMON_FLAGS
- make $COMMON_FLAGS lapack-test

Loading…
Cancel
Save