From: Jacob Lifshay Date: Mon, 6 Apr 2020 01:53:14 +0000 (-0700) Subject: add pip and apt to gitlab cache X-Git-Tag: div_pipeline~1440^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=285c619c6b0c0e2eb22aff0616e437ef9ee3adb1;p=soc.git add pip and apt to gitlab cache --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 037653e9..670de134 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,16 +3,19 @@ image: debian:10 cache: paths: - ccache + - .cache/pip + - apt-cache variables: + PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" GIT_SUBMODULE_STRATEGY: recursive build: stage: build before_script: - - apt-get update + - apt-get -o dir::cache::archives="apt-cache" update - >- - apt-get -y install + apt-get -o dir::cache::archives="apt-cache" -y install build-essential git python3-dev python3-pip python3-setuptools python3-wheel pkg-config tcl-dev libreadline-dev bison flex libffi-dev ccache python3-venv