Skip to content

Test: execute full workspace tests on macOS/Windows excluding unsupported packages #2485

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

Merged
Merged
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
26 changes: 23 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,31 @@ jobs:
include:
- os: ubuntu-24.04
test-args: --features full,unstable --workspace
# Only test client on windows & mac (since its the only binaries supported for those os for now)
# Exclude nodes not officially supported on Windows and macOS (only mithril-client is supported)
- os: macos-14
test-args: --package mithril-client --package mithril-client-cli --features full,unstable
test-args: >
--features full,unstable --workspace
--exclude mithril-aggregator
--exclude mithril-signer
--exclude mithril-relay
--exclude mithril-client-wasm
--exclude mithril-aggregator-fake
# Windows has a larger list of exclusion because some tests are too slow (ie: mithril-stm) or can't compile (ie: mithril-common)
- os: windows-latest
test-args: --package mithril-client --package mithril-client-cli --features full,unstable
test-args: >
--features full,unstable --workspace
--exclude mithril-aggregator
--exclude mithril-signer
--exclude mithril-relay
--exclude mithril-client-wasm
--exclude mithril-aggregator-fake
--exclude mithril-common
--exclude mithril-stm
--exclude mithril-metric
--exclude mithril-end-to-end
--exclude mithril-persistence
--exclude mithril-resource-pool
--exclude mithril-build-script

runs-on: ${{ matrix.os }}

Expand Down