diff options
| author | Tatsuyuki Ishi <[email protected]> | 2018-09-25 14:27:13 +0900 |
|---|---|---|
| committer | Tatsuyuki Ishi <[email protected]> | 2018-09-25 22:00:20 +0900 |
| commit | 8cfe49fda68927bad43ab4f0cf17222c1f76ca0c (patch) | |
| tree | 42458ee280650ea2d0390b62449792a9935142d8 | |
| parent | Maintenance mode (diff) | |
| download | rust-openssl-8cfe49fda68927bad43ab4f0cf17222c1f76ca0c.tar.xz rust-openssl-8cfe49fda68927bad43ab4f0cf17222c1f76ca0c.zip | |
Raise requirement to 1.21.0
| -rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 785df354..4161161e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ save_openssl: &SAVE_OPENSSL paths: - /openssl deps_key: &DEPS_KEY - key: deps-1.19.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2 + key: deps-1.21.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2 restore_deps: &RESTORE_DEPS restore_cache: <<: *DEPS_KEY @@ -31,7 +31,7 @@ save_deps: &SAVE_DEPS job: &JOB working_directory: ~/build docker: - - image: rust:1.19.0 + - image: rust:1.21.0 steps: - checkout - run: apt-get update @@ -76,7 +76,7 @@ macos_job: &MACOS_JOB - checkout - run: sudo mkdir /opt - run: sudo chown -R $USER /usr/local /opt - - run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.19.0 + - run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.21.0 - run: sudo ln -s $CARGO_HOME/bin/* /usr/local/bin - *RESTORE_REGISTRY - run: cargo generate-lockfile |