diff options
| author | Steven Fackler <[email protected]> | 2017-08-27 13:11:44 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-08-27 13:11:44 -0700 |
| commit | d401a5aafa9e314defdd93737ad53dfc163980f4 (patch) | |
| tree | 7fc685f2ebae54a15d84cea8987ac136ba1128c1 | |
| parent | Symlink README in place (diff) | |
| download | rust-openssl-d401a5aafa9e314defdd93737ad53dfc163980f4.tar.xz rust-openssl-d401a5aafa9e314defdd93737ad53dfc163980f4.zip | |
Simplify circle config a bit
| -rw-r--r-- | .circleci/config.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 24408ec6..59f899f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,14 +36,14 @@ job: &JOB - checkout - run: apt-get update - run: ./test/add_target.sh - - <<: *RESTORE_REGISTRY + - *RESTORE_REGISTRY - run: cargo generate-lockfile - - <<: *SAVE_REGISTRY + - *SAVE_REGISTRY - run: echo "${LIBRARY}-${VERSION}-${TARGET}" > ~/lib_key - - <<: *RESTORE_OPENSSL + - *RESTORE_OPENSSL - run: ./test/build_openssl.sh - - <<: *SAVE_OPENSSL - - <<: *RESTORE_DEPS + - *SAVE_OPENSSL + - *RESTORE_DEPS - run: cargo run --manifest-path=systest/Cargo.toml --target $TARGET - run: | ulimit -c unlimited @@ -64,7 +64,7 @@ job: &JOB when: on_fail - store_artifacts: path: /tmp/core_dumps - - <<: *SAVE_DEPS + - *SAVE_DEPS openssl_110: &OPENSSL_110 LIBRARY: openssl |