diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b56c9b7065297083b88e2b4094b2677602789600..c9e45a08afd075feadd7ee9d04adcb5352391560 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: - build - test -build.intel: +build-intel: stage: build before_script: - module load intel impi mkl cmake anaconda/3/2019.03 @@ -20,7 +20,7 @@ build.intel: tags: - docker -build.gnu: +build-gnu: stage: build script: - module load gcc impi mkl cmake anaconda/3/2019.03 @@ -36,19 +36,19 @@ build.gnu: tags: - docker -test.intel: +test-intel: stage: test dependencies: - - build.intel + - build-intel script: - pytest tests tags: - docker -test.gnu: +test-gnu: stage: test dependencies: - - build.intel + - build-gnu script: - pytest tests tags: