Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build:
working_directory: /tmp/dockworker
docker:
- image: rust:1.49.0
- image: rust:1.56.0
environment:
DOCKER_VERSION: 18.03.1-ce
steps:
Expand Down Expand Up @@ -63,15 +63,25 @@ jobs:
RUST_BACKTRACE=1 cargo build --verbose --features ssl
RUST_BACKTRACE=1 cargo build --examples -j 8
- run:
name: Unit testing
name: Unit testing with ssl feature
command: |
RUST_BACKTRACE=1 cargo test -j 8 --verbose --features ssl
- run:
name: More unit testing
name: Unit testing with ssl-rustls feature
command: |
RUST_BACKTRACE=1 cargo test -j 8 --verbose --features ssl-rustls
- run:
name: More unit testing with ssl feature
command: |
docker load -i test-iostream
docker load -i test-signal
RUST_BACKTRACE=1 cargo test --verbose --features ssl -- --ignored
- run:
name: More unit testing with ssl-rustls feature
command: |
docker load -i test-iostream
docker load -i test-signal
Copy link
Collaborator

@eldesh eldesh Jul 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same above (ssl-rustls?).
And in this point, test-iostrem and test-signal are loaded already at More unit testing with ssl feature.

RUST_BACKTRACE=1 cargo test --verbose --features ssl-rustls -- --ignored
- save_cache:
key: cache-cargo-target-{{ .Environment.CIRCLE_JOB }}-{{ .Environment.CIRCLECI_CACHE_VERSION }}-{{ checksum "/tmp/build-dep" }}
paths:
Expand Down
Loading