summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJonas Zohren <git-pbkyr@jzohren.de>2021-12-14 11:16:40 +0100
committerJonas Zohren <git-pbkyr@jzohren.de>2021-12-14 11:16:40 +0100
commitadb518fa0df35ba85c2ff1c96a539dda085f8991 (patch)
treef1a421627b21abb01b7f6fd8275cacf52a6ff90a /.gitlab-ci.yml
parentf91216dd3ce5f842c1c441d0bae5a852e689bccf (diff)
downloadconduit-adb518fa0df35ba85c2ff1c96a539dda085f8991.zip
CI: Use curl instead of wget
The rust docker image already comes with curl, no need to install wget.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 664b5ea..1dedd8f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -229,8 +229,9 @@ test:cargo:
before_script:
- mkdir -p $CARGO_HOME
- apt-get update -yqq
- - apt-get install -yqq --no-install-recommends build-essential libssl-dev pkg-config wget
+ - apt-get install -yqq --no-install-recommends build-essential libssl-dev pkg-config
- rustup component add clippy rustfmt
+ - curl "https://faulty-storage.de/gitlab-report" --output ./gitlab-report && chmod +x ./gitlab-report
# If provided, bring in caching through sccache, which uses an external S3 endpoint to store compilation results:
- if [ -n "${SCCACHE_BIN_URL}" ]; then curl $SCCACHE_BIN_URL --output /sccache && chmod +x /sccache && export RUSTC_WRAPPER=/sccache; fi
script: