Simplify circle config a bit
This commit is contained in:
parent
ca40c2e6a3
commit
d401a5aafa
|
|
@ -36,14 +36,14 @@ job: &JOB
|
||||||
- checkout
|
- checkout
|
||||||
- run: apt-get update
|
- run: apt-get update
|
||||||
- run: ./test/add_target.sh
|
- run: ./test/add_target.sh
|
||||||
- <<: *RESTORE_REGISTRY
|
- *RESTORE_REGISTRY
|
||||||
- run: cargo generate-lockfile
|
- run: cargo generate-lockfile
|
||||||
- <<: *SAVE_REGISTRY
|
- *SAVE_REGISTRY
|
||||||
- run: echo "${LIBRARY}-${VERSION}-${TARGET}" > ~/lib_key
|
- run: echo "${LIBRARY}-${VERSION}-${TARGET}" > ~/lib_key
|
||||||
- <<: *RESTORE_OPENSSL
|
- *RESTORE_OPENSSL
|
||||||
- run: ./test/build_openssl.sh
|
- run: ./test/build_openssl.sh
|
||||||
- <<: *SAVE_OPENSSL
|
- *SAVE_OPENSSL
|
||||||
- <<: *RESTORE_DEPS
|
- *RESTORE_DEPS
|
||||||
- run: cargo run --manifest-path=systest/Cargo.toml --target $TARGET
|
- run: cargo run --manifest-path=systest/Cargo.toml --target $TARGET
|
||||||
- run: |
|
- run: |
|
||||||
ulimit -c unlimited
|
ulimit -c unlimited
|
||||||
|
|
@ -64,7 +64,7 @@ job: &JOB
|
||||||
when: on_fail
|
when: on_fail
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: /tmp/core_dumps
|
path: /tmp/core_dumps
|
||||||
- <<: *SAVE_DEPS
|
- *SAVE_DEPS
|
||||||
|
|
||||||
openssl_110: &OPENSSL_110
|
openssl_110: &OPENSSL_110
|
||||||
LIBRARY: openssl
|
LIBRARY: openssl
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue