diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-02-14 19:36:50 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-02-14 20:47:46 -0800 |
commit | 364cebcb51868136e27ada169221da72d28415e8 (patch) | |
tree | 32f8cfccfdd9a224b5e4f64525256527fc5cf84c /.gitlab-ci.yml | |
parent | fedc0eaad141ed251a5cfbb3f704068e246c9f70 (diff) | |
download | fatcat-cli-364cebcb51868136e27ada169221da72d28415e8.tar.gz fatcat-cli-364cebcb51868136e27ada169221da72d28415e8.zip |
gitlab CI: try to fix builds by installing libsodium-dev
Might need to apt update?
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 953fb16..be202a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,9 @@ stages: rust-latest: stage: test - image: rust:latest + image: rust:1-buster + before_script: + - apt install -y libsodium-dev script: - make test |