Skip to content
Snippets Groups Projects
Commit cc1b384a authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Update .gitlab-ci.yml

parent 1ed9fed3
No related branches found
No related tags found
No related merge requests found
Pipeline #22 failed
......@@ -2,11 +2,22 @@ image: python:3
variables:
TEST_DATASET_NAME: "L570745_uv_first10.MS.tar.xz"
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
- venv/
before_script:
- python -V # Print out python version for debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
- pip install cwltool
- cd test_data
- tar -xvf ${TEST_DATASET_NAME}
- cd $CI_PROJECT_DIR
after_script:
- echo "All done"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment