diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-28 23:12:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-12-28 23:12:41 -0800 |
commit | 750ebfc3b08426b548edbf096a7bb657ef257638 (patch) | |
tree | f1582e690832d59a467f951d49e4bb8fd9056042 | |
parent | 8a86fcc6beb55743cb9bdcded4ee50cdec4e593d (diff) | |
download | chocula-750ebfc3b08426b548edbf096a7bb657ef257638.tar.gz chocula-750ebfc3b08426b548edbf096a7bb657ef257638.zip |
gitlab CI: reduce apt packages installed
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 099f9d8..149df37 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: debian:bullseye before_script: - apt update -qy - - apt install -y python3-wheel python3.8 python3.8-dev python3.8-venv python3.8-distutils python3-pytest git make pipenv + - apt install -y --no-install-recommends python3-wheel python3.8 python3.8-venv python3.8-distutils python3-pytest git make pipenv - pipenv --version variables: |