Verified Commit 90b0dfb9 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(ci): cache python packages for pages build

parent f631bf08
Pipeline #1238 canceled with stages
in 1 minute and 41 seconds
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
- venv/
mkdocs:compile:
stage: compile
image: python:3.8
tags:
- docker
before_script:
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
script:
- pip install -r requirements.txt -U
- mkdocs build --strict
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment