diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-07-13 14:43:13 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-07-13 14:43:13 -0700 |
commit | d98d5a13a4bfdb046765eca8c63f44a08db4c581 (patch) | |
tree | 3727227602e05e9f14bf28feb6a10375a9c354c6 | |
parent | dfd44e74d879c3950ab1c37e132e5089027565e2 (diff) | |
download | sandcrawler-d98d5a13a4bfdb046765eca8c63f44a08db4c581.tar.gz sandcrawler-d98d5a13a4bfdb046765eca8c63f44a08db4c581.zip |
CI: new sbt debian repository
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a94a6bd..ac0551e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,10 +9,9 @@ variables: before_script: - apt update -qy - apt install -y --no-install-recommends apt-transport-https software-properties-common curl dirmngr gpg-agent - # SBT bintray APT signing key - - 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 + # scala-sbt.org APT signing key + - apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0x2EE0EA64E40A89B84B2DF73499E82A75642AC823 + - apt-add-repository -y "deb https://repo.scala-sbt.org/scalasbt/debian all main" - 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 build-essential poppler-data libmagic1 pipenv - pipenv --version |