diff options
| author | Steven Fackler <[email protected]> | 2017-07-25 19:53:34 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-07-25 19:53:34 -0700 |
| commit | fbc2c08e0701a05b49c2a94a2b1286d7e7134b40 (patch) | |
| tree | d5e7613e9632c08813e8ff9512f12371b052b792 | |
| parent | Only install curl when building openssl (diff) | |
| download | rust-openssl-fbc2c08e0701a05b49c2a94a2b1286d7e7134b40.tar.xz rust-openssl-fbc2c08e0701a05b49c2a94a2b1286d7e7134b40.zip | |
Always apt-get update
| -rw-r--r-- | circle.yml | 1 | ||||
| -rwxr-xr-x | test/build_openssl.sh | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,7 @@ job: &JOB - image: jimmycuadra/rust:1.19.0 steps: - checkout + - apt-get update - run: ./test/add_target.sh - restore_cache: key: registry diff --git a/test/build_openssl.sh b/test/build_openssl.sh index 9d4323e1..3decd937 100755 --- a/test/build_openssl.sh +++ b/test/build_openssl.sh @@ -5,7 +5,6 @@ if [ -d ~/openssl ]; then exit 0 fi -apt-get update apt-get install -y --no-install-recommends curl case "${LIBRARY}" in |