From 06d90683882448de2df7c338dd78bef7f2979bbe Mon Sep 17 00:00:00 2001 From: Thomas Purcell <purcell@fhi-berlin.mpg.de> Date: Tue, 21 Jul 2020 07:33:05 +0200 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1fc81c8e..e841b05c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ stages: build-intel: stage: build script: - - module load intel impi mkl cmake anaconda/3/2019.03 + - module load intel impi mkl cmake anaconda/3/2019.03 mpi4py - mkdir build_intel/ - cd build_intel/ - python -m venv sisso @@ -18,14 +18,14 @@ build-intel: - make - make install - cd ../ - - LD_PRELOAD=libmpicxx.so.12 pytest tests/ + - pytest tests/ tags: - docker build-gnu: stage: build script: - - module load gcc impi mkl cmake anaconda/3/2019.03 + - module load gcc impi mkl cmake anaconda/3/2019.03 mpi4py - mkdir build_gcc/ - cd build_gcc/ - python -m venv sisso @@ -36,6 +36,6 @@ build-gnu: - make - make install - cd ../ - - LD_PRELOAD=libmpig++-9.3.0.so.12 pytest tests/ + - pytest tests/ tags: - docker -- GitLab