summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2019-03-10 22:17:52 -0700
committerSteven Fackler <sfackler@gmail.com>2019-03-12 07:55:40 -0700
commitacb629a47fcaa0371e614fe1ea1a39a6bc987f60 (patch)
tree9d065c6ddbdba4dd592f04dbcfcb18c761fc6c8a /.circleci
parent546405dc58e0e11d695ba6957aab567f9d559192 (diff)
downloadrust-openssl-acb629a47fcaa0371e614fe1ea1a39a6bc987f60.zip
Add a crate to define custom error libraries
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index aa13f8bd..3e964086 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -129,6 +129,12 @@ jobs:
--manifest-path=systest/Cargo.toml \
<<# parameters.vendored >>--features vendored<</ parameters.vendored >> \
--target << parameters.target >>
+ - run: |
+ cargo test \
+ --manifest-path=openssl-errors/Cargo.toml \
+ <<# parameters.vendored >>--features openssl-sys/vendored<</ parameters.vendored >> \
+ --target << parameters.target >> \
+ <<# parameters.no_run >>--no-run<</ parameters.no_run >>
- run: |
ulimit -c unlimited
export PATH=$OPENSSL_DIR/bin:$PATH
@@ -177,6 +183,10 @@ jobs:
--manifest-path=systest/Cargo.toml \
<<# parameters.vendored >> --features vendored <</ parameters.vendored >>
- run: |
+ cargo run \
+ --manifest-path=openssl-errors/Cargo.toml \
+ <<# parameters.vendored >> --features openssl-sys/vendored <</ parameters.vendored >>
+ - run: |
PATH=/usr/local/opt/openssl/bin:$PATH
cargo test \
--manifest-path=openssl/Cargo.toml \