From 9976e4d18f55f93bcaa2224950a29e38aa8a763f Mon Sep 17 00:00:00 2001 From: Thomas Purcell <purcell@fhi-berlin.mpg.de> Date: Wed, 22 Jul 2020 17:16:06 +0200 Subject: [PATCH] Try to find where the bug in the testing script it --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b90c6b2c..c8d51c19 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ stages: build-intel: stage: build script: - - module load intel impi cmake anaconda/3/2019.03 mpi4py + - module load intel impi mkl cmake anaconda/3/2019.03 mpi4py - mkdir build_intel/ - cd build_intel/ - conda create -p sisso/ python=3.7 mkl numpy scipy pandas pytest @@ -16,6 +16,8 @@ build-intel: - cmake -C ../cmake/toolchains/intel_py.cmake ../ - make - make install + - ls sisso/lib/ + - readelf -d sisso/lib/python*/site-packages/sisso/_sisso.so - cd ../ - pytest tests tags: @@ -33,6 +35,8 @@ build-gnu: - cmake -C ../cmake/toolchains/gnu_py.cmake ../ - make - make install + - ls sisso/lib/ + - readelf -d sisso/lib/python*/site-packages/sisso/_sisso.so - cd ../ - pytest tests tags: -- GitLab