Skip to content

Commit

Permalink
Isolate integration test jobs per crate
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Jul 10, 2020
1 parent bb15335 commit 6c62254
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
# - https://github.community/t/support-for-yaml-anchors/16128/15
# - https://github.community/t/reusing-sharing-inheriting-steps-between-jobs-declarations/16851/13
# - https://github.community/t/using-matrix-variable-in-docker-image-name/17296
test-integration-stable:
test-integration-tendermint-stable:
runs-on: ubuntu-latest
services:
tendermint:
Expand All @@ -84,6 +84,26 @@ jobs:
with:
command: test
args: -p tendermint --test integration --no-fail-fast -- --ignored

# TODO(shonfeder): remove duplication once GitHub addresses one of these
# - https://github.community/t/support-for-yaml-anchors/16128/15
# - https://github.community/t/reusing-sharing-inheriting-steps-between-jobs-declarations/16851/13
# - https://github.community/t/using-matrix-variable-in-docker-image-name/17296
test-integration-light-client-stable:
runs-on: ubuntu-latest
services:
tendermint:
image: tendermint/tendermint:v0.33.5
ports:
- 26656:26656
- 26657:26657
- 26660:26660
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
Expand Down

0 comments on commit 6c62254

Please sign in to comment.