gitlab-ci: do not install dependencies for pages

All the job does is copy the artifact to public directory.
This commit is contained in:
Renken 2022-07-13 00:20:58 +02:00
parent f7b0f87dfd
commit 29404943cd
Signed by: renken
GPG key ID: 1F2BB159B645E575

View file

@ -12,7 +12,7 @@ cache:
paths: paths:
- .venv/ - .venv/
before_script: .setup_build: &setup_build
- apt-get update - apt-get update
- apt-get dist-upgrade -y - apt-get dist-upgrade -y
- > - >
@ -33,8 +33,6 @@ before_script:
sed sed
# Convenient hack until this is fixed. # Convenient hack until this is fixed.
- ln -s /usr/bin/python3 /usr/bin/python - ln -s /usr/bin/python3 /usr/bin/python
.setup_build: &setup_build
- python -m venv .venv - python -m venv .venv
- . ./.venv/bin/activate - . ./.venv/bin/activate
- python -m pip install -r requirements.txt - python -m pip install -r requirements.txt