# HG changeset patch # User Thierry Florac # Date 1574446822 -3600 # Node ID 6093753eed870ef6dc7b505068668b44989b3471 # Parent b403001b58c42e563d0ba2dac5fda2fe614c2cf5 Added cache to Gitlab CI diff -r b403001b58c4 -r 6093753eed87 .gitlab-ci.yml --- a/.gitlab-ci.yml Fri Nov 22 18:52:19 2019 +0100 +++ b/.gitlab-ci.yml Fri Nov 22 19:20:22 2019 +0100 @@ -5,11 +5,19 @@ - dist - quality +cache: + paths: + - venv/ + before_script: - export http_proxy=http://172.17.0.1:3128/ - export HTTP_PROXY=http://172.17.0.1:3128/ - export https_proxy=http://172.17.0.1:3128/ - export HTTPS_PROXY=http://172.17.0.1:3128/ + - python -V + - pip install virtualenv + - virtualenv venv + - source venv/bin/activate bootstrap: stage: .pre