From aa87545f9b618b9df6c6858dc7e7f472606dba9b Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Wed, 31 Jan 2018 15:49:13 +1100 Subject: [PATCH] Fix gitlab ci runner path --- .gitlab-ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 316093c..5cee3a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,11 @@ test_app: script: - - . /home/greg/lalsuite-install/etc/lalapps-user-env.sh - - /home/greg/anaconda2/bin/python tests.py Writer - - /home/greg/anaconda2/bin/python tests.py par - - /home/greg/anaconda2/bin/python tests.py BaseSearchClass - - /home/greg/anaconda2/bin/python tests.py ComputeFstat - - /home/greg/anaconda2/bin/python tests.py SemiCoherentSearch - - /home/greg/anaconda2/bin/python tests.py SemiCoherentGlitchSearch - - /home/greg/anaconda2/bin/python tests.py MCMCSearch - - /home/greg/anaconda2/bin/python tests.py GridSearch + - . ${HOME}/lalsuite-install/etc/lalapps-user-env.sh + - ${HOME}/anaconda2/bin/python tests.py Writer + - ${HOME}/anaconda2/bin/python tests.py par + - ${HOME}/anaconda2/bin/python tests.py BaseSearchClass + - ${HOME}/anaconda2/bin/python tests.py ComputeFstat + - ${HOME}/anaconda2/bin/python tests.py SemiCoherentSearch + - ${HOME}/anaconda2/bin/python tests.py SemiCoherentGlitchSearch + - ${HOME}/anaconda2/bin/python tests.py MCMCSearch + - ${HOME}/anaconda2/bin/python tests.py GridSearch -- GitLab