Skip to content
Snippets Groups Projects
Commit 77aebe2a authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Photos: pip cache so we can go Even Faster!

parent 27c7227b
No related branches found
No related tags found
No related merge requests found
Pipeline #250 canceled with stages
in 4 minutes and 32 seconds
...@@ -18,6 +18,15 @@ build_html: ...@@ -18,6 +18,15 @@ build_html:
dependencies: dependencies:
- build_js - build_js
image: python:3 image: python:3
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
- venv/
before_script:
- python3 -m venv venv
- source venv/bin/activate
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
- make html - make html
......
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