diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-16 18:35:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-16 18:35:42 -0700 |
commit | abb92d6913f32697528f296baea524d81a505999 (patch) | |
tree | 6f647e2b40444e01c344993a745948ff065c4bdf | |
parent | 6e7f02dd3c3c1a87aa614adf9bdace8d8368fe4d (diff) | |
download | fatcat-abb92d6913f32697528f296baea524d81a505999.tar.gz fatcat-abb92d6913f32697528f296baea524d81a505999.zip |
CI: add libpq-dev (for diesel build)
Not sure why things build without this.
-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 303757e0..69b28ecd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 software-properties-common python3.7 python3.7-dev python3.7-venv python3.7-distutils + - 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 libpq-dev - cargo install diesel_cli --version 1.3.1 - pip3 install pipenv - pipenv --version |