Skip to content

Commit

Permalink
Fix CI script in master branch (pre-release)
Browse files Browse the repository at this point in the history
Former-commit-id: d8e3e5a35d3aefbc2059b0fd0d8f7d172f0985a7
  • Loading branch information
mdiazmel committed Mar 6, 2019
1 parent f5729eb commit fd9b944
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ test:instantiate:mac:
- pytest --verbose -k 'test_instantiate'
- module purge
- source deactivate


test:instantiate:linux:
stage: test
Expand All @@ -134,6 +133,44 @@ test:instantiate:linux:
- module purge
- source deactivate

test:run:mac:
stage: test
tags:
- macOS
only:
- schedules
script:
- source activate $CLINICA_ENV_BRANCH_CLEAN
- module load clinica.all
- cd test
- ln -s /Volumes/data/data_ci ./data
- pytest --verbose
--working_directory=/Volumes/data/working_directory_ci_mac
-k 'test_run'
- module purge
- source deactivate

test:run:linux:
stage: test
tags:
- linux
only:
- schedules
script:
- source activate $CLINICA_ENV_BRANCH_CLEAN
- export PATH="/home/gitlab-runner/dcm2nii":${PATH}
- module load clinica.all
- cd test
- ln -s /localdrive10TB/data/ci/data_ci_upgrade ./data
- taskset -c 0-21 pytest
--verbose
--working_directory=/localdrive10TB/data/working_directory_ci_linux
--disable-warnings
--timeout=0
-n 6
-k 'test_run'
- module purge
- source deactivate

pkg:
stage: package
Expand Down

0 comments on commit fd9b944

Please sign in to comment.