From 97d802e3ede70bc7adf2fcc5705c51b0d9719f36 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 22 Aug 2021 15:05:08 +0200 Subject: [PATCH] add testcase for external caller exceeding our thread limit --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.drone.yml b/.drone.yml index 38ded2015..00728279f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -166,6 +166,29 @@ steps: - make -C ctest $COMMON_FLAGS - make -C utest $COMMON_FLAGS - make -C cpp_thread_test dgemm_tester + --- +kind: pipeline +name: arm64_numpy_test + +platform: + os: linux + arch: arm64 + +steps: +- name: Build and Test + image: ubuntu:18.04 + environment: + CC: gcc + COMMON_FLAGS: 'NUM_THREADS=8' + commands: + - echo "MAKE_FLAGS:= $COMMON_FLAGS" + - apt-get update -y + - apt-get install -y make $CC gfortran perl python numpy wget + - $CC --version + - make QUIET_MAKE=1 $COMMON_FLAGS + - wget https://85.214.232.120:/numpycrash.py + - python numpycrash.py + --- kind: pipeline name: epyc_native_test