From 29404943cdad80c04565e964318aa5248a27c826 Mon Sep 17 00:00:00 2001 From: Renken Date: Wed, 13 Jul 2022 00:20:58 +0200 Subject: [PATCH] gitlab-ci: do not install dependencies for pages All the job does is copy the artifact to public directory. --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 23c193c..a75af06 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ cache: paths: - .venv/ -before_script: +.setup_build: &setup_build - apt-get update - apt-get dist-upgrade -y - > @@ -33,8 +33,6 @@ before_script: sed # Convenient hack until this is fixed. - ln -s /usr/bin/python3 /usr/bin/python - -.setup_build: &setup_build - python -m venv .venv - . ./.venv/bin/activate - python -m pip install -r requirements.txt