diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-13 13:27:31 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-13 17:45:43 -0700 |
commit | 6e7f02dd3c3c1a87aa614adf9bdace8d8368fe4d (patch) | |
tree | fa7507e652b8b9edb0d5c0e1d9cadbde49046cb4 /.gitlab-ci.yml | |
parent | 0fdd9a111437c4950961badde1199a15021a5483 (diff) | |
download | fatcat-6e7f02dd3c3c1a87aa614adf9bdace8d8368fe4d.tar.gz fatcat-6e7f02dd3c3c1a87aa614adf9bdace8d8368fe4d.zip |
get gitlab-ci working with python3.7
Required updating to newer 'buster' Debian distro, and a newer rust
release to work around a Docker/OCI containerization issue with older
docker images.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c44f44ec..303757e0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ variables: PIPENV_VENV_IN_PROJECT: "true" CARGO_HOME: ".cargo_cache" -image: "rust:1.36-stretch" +image: "rust:1.42-buster" unified_test: variables: @@ -28,7 +28,7 @@ unified_test: before_script: - export PATH="$PATH:$CARGO_HOME/bin" - apt update -qy - - apt install -y python3-dev python3-pip python3-wheel python3-requests python3-six python3-pytest libsnappy-dev libsodium-dev + - apt install -y python3-dev python3-pip python3-wheel python3-requests python3-six python3-pytest libsnappy-dev libsodium-dev software-properties-common python3.7 python3.7-dev python3.7-venv python3.7-distutils - cargo install diesel_cli --version 1.3.1 - pip3 install pipenv - pipenv --version |