gitlab-ci: do not install dependencies for pages
All the job does is copy the artifact to public directory.
This commit is contained in:
parent
f7b0f87dfd
commit
29404943cd
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue