Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

With "production-ready" by default #1089

Merged
merged 8 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
21 changes: 7 additions & 14 deletions .github/workflows/parachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,29 +115,22 @@ jobs:
run: rustup show
# Increase stack limit for beacon light client tests
- run: sudo prlimit --pid $$ --stack=32768
# Run tests for everything except the beacon light client
- name: Tests for everything except the beacon light client
# Run tests for runtime-benchmarks feature
- name: Tests for runtime-benchmarks
working-directory: parachain
run: >
cargo test
--workspace
--features runtime-benchmarks
--exclude snowbridge-ethereum-beacon-client
--exclude snowbridge-runtime-tests
# Run tests for beacon light client, excluding benchmark tests
- name: Tests for beacon light client excluding benchmark tests
# Run tests for fast-runtime feature
- name: Tests for fast-runtime
working-directory: parachain
run: >
cargo test
--package snowbridge-ethereum-beacon-client
# Run benchmark tests for beacon light client
- name: Benchmark tests for beacon light client
working-directory: parachain
run: >
cargo test
--release
--features runtime-benchmarks
--package snowbridge-ethereum-beacon-client
--workspace
--features fast-runtime
--exclude snowbridge-runtime-tests

coverage:
needs: check
Expand Down
Loading
Loading