aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-12-28 23:41:57 -0800
committerBryan Newbold <bnewbold@archive.org>2021-01-05 17:50:47 -0800
commitf0ffcd79fb82d7bad68fa7e638bb1922fd4f544f (patch)
tree63c701e3a8d66f200fb207ff9be88431d37f3f92 /.gitlab-ci.yml
parent8d64bf54aabaf7fd9411a0304e9455770cfba3a9 (diff)
downloadsandcrawler-f0ffcd79fb82d7bad68fa7e638bb1922fd4f544f.tar.gz
sandcrawler-f0ffcd79fb82d7bad68fa7e638bb1922fd4f544f.zip
gitlab CI: install fewer packages (no recommends)
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1ed82cb..803327b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
image: ubuntu:xenial
before_script:
- apt update -qy
- - apt install -y apt-transport-https software-properties-common
+ - apt install -y --no-install-recommends apt-transport-https software-properties-common
- add-apt-repository -y ppa:deadsnakes/ppa
- add-apt-repository -y ppa:cran/poppler
# kitware (cmake) APT signing key
@@ -11,7 +11,7 @@ before_script:
- apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
- apt-add-repository -y "deb https://dl.bintray.com/sbt/debian /"
- apt update -qy
- - apt install -y python3-dev python3-pip python3-wheel libjpeg-dev openjdk-8-jdk-headless sbt libpq-dev python-dev python3.8 python3.8-dev python3.8-venv python3.8-distutils pkg-config python3-pytest git libsnappy-dev libsodium-dev libpoppler-cpp-dev cmake libpython3.8-dev
+ - apt install -y --no-install-recommends python3-dev python3-pip python3-wheel libjpeg-dev openjdk-8-jdk-headless sbt libpq-dev python-dev python3.8 python3.8-dev python3.8-venv python3.8-distutils pkg-config python3-pytest git libsnappy-dev libsodium-dev libpoppler-cpp-dev cmake libpython3.8-dev
- python3 -m pip install --upgrade pip
- python3 -m pip install pipenv
- pipenv --version