-
Notifications
You must be signed in to change notification settings - Fork 3
feat: node discovery and much more #16
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
Changes from 5 commits
84ea902
6ba6ebe
0e304be
0c38bce
98e7ac4
6d504c3
736fab1
cc39b86
68e46c9
0337f76
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,22 +132,23 @@ jobs: | |
|
|
||
| # Note: Using specific features instead of --all-features to avoid sp1-sdk | ||
| # build issues (linker OOM on Linux, C++20 on Windows). | ||
| # adaptive-ml is required for gossipsub and coordinator tests. | ||
| - name: Build tests | ||
| run: cargo build --tests --features "default,mocks,h2_greedy,test-utils" | ||
| run: cargo build --tests --features "default,adaptive-ml,mocks,h2_greedy,test-utils" | ||
|
|
||
|
||
| - name: Clean incremental artifacts | ||
| run: | | ||
| find target -name "incremental" -type d -exec rm -rf {} + 2>/dev/null || true | ||
| df -h | ||
|
|
||
| - name: Gossipsub | ||
| run: cargo nextest run --test gossipsub_integration_test --features "default,mocks,h2_greedy,test-utils" --no-fail-fast | ||
| run: cargo nextest run --test gossipsub_integration_test --features "default,adaptive-ml,mocks,h2_greedy,test-utils" --no-fail-fast | ||
|
|
||
| - name: Four Word Integration | ||
| run: cargo nextest run --test four_word_integration_test --features "default,mocks,h2_greedy,test-utils" --no-fail-fast | ||
| run: cargo nextest run --test four_word_integration_test --features "default,adaptive-ml,mocks,h2_greedy,test-utils" --no-fail-fast | ||
|
|
||
| - name: Coordinator Integration | ||
| run: cargo nextest run --test coordinator_integration_test --features "default,mocks,h2_greedy,test-utils" --no-fail-fast | ||
| run: cargo nextest run --test coordinator_integration_test --features "default,adaptive-ml,mocks,h2_greedy,test-utils" --no-fail-fast | ||
|
|
||
| - name: Health Integration | ||
| run: cargo nextest run --test health_integration_test --features "default,mocks,h2_greedy,test-utils" --no-fail-fast | ||
| run: cargo nextest run --test health_integration_test --features "default,adaptive-ml,mocks,h2_greedy,test-utils" --no-fail-fast | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI enables wrong feature
integration-securityrunssecurity_comprehensive_test,validation_security_test, andvalidation_testwithadaptive-mlenabled (.github/workflows/integration-identity.yml:132-148), but these tests aren’t feature-gated. This makesadaptive-mllook required for identity/security CI and can mask regressions when running with the default feature set. Ifadaptive-mlis only needed foreigentrust_integration_test, split the workflow so only that test (and its build) usesadaptive-ml.Prompt To Fix With AI