From a2b3a88a2591d4402cc9499ca1defab9fc7471ba Mon Sep 17 00:00:00 2001 From: mancini <mancini@astron.nl> Date: Wed, 2 Oct 2019 14:56:16 +0200 Subject: [PATCH] First implementation of CI --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e69de29b..a664499c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +variables: + TEST_DATASET_NAME: "L570745_uv_first10.MS.tar.xz" + +before_script: + - cd test_data + - tar -xvf $(TEST_DATASET_NAME) + +after_script: + - echo "All done" + + +test_DPPP_step: + stage: test + script: + - cwltool steps/DPPP.cwl msin=test_data/L570745_SB000_uv_first10.MS -- GitLab