Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8fadaed
Revert "revert release changes"
collinjackson Aug 4, 2025
27d5274
Remove extra logs
collinjackson Aug 4, 2025
94cd5bd
Simplify
collinjackson Aug 4, 2025
fc264c1
Merge remote-tracking branch 'origin/main' into collinjackson/integra…
collinjackson Aug 9, 2025
b88a7a4
Remove comment
collinjackson Aug 9, 2025
64ae3a5
Merge remote-tracking branch 'origin/main' into collinjackson/integra…
collinjackson Aug 13, 2025
95b9c37
ci(release): add manual checkbox overrides for docker build/push; gat…
collinjackson Aug 13, 2025
7d861f9
ci: gate docker push to main with manual override; enforce bash for i…
collinjackson Aug 13, 2025
cd504db
Remove comments
collinjackson Aug 13, 2025
8a54bb8
tests(integration): handle 429 early and try next node id; make ulimi…
collinjackson Aug 13, 2025
fbf445c
tests(integration): on failure, rotate node IDs and retry a second pa…
collinjackson Aug 13, 2025
e929858
Merge remote-tracking branch 'origin/main' into collinjackson/integra…
collinjackson Aug 13, 2025
cbd6bcf
Fix test
collinjackson Aug 13, 2025
ce9d717
Fix success pattern
collinjackson Aug 14, 2025
2107703
Fix flaky windows test
collinjackson Aug 14, 2025
9a0b4ab
Increase pause
collinjackson Aug 14, 2025
cf04e1d
Flakiness
collinjackson Aug 14, 2025
78024c5
Update docs
collinjackson Aug 14, 2025
455b523
Consolidate
collinjackson Aug 14, 2025
d1de149
matrix release
collinjackson Aug 14, 2025
471f8ec
matrix
collinjackson Aug 14, 2025
173f909
Fix branching
collinjackson Aug 14, 2025
79e74f5
Remove matrix workflow
collinjackson Aug 14, 2025
90d08d4
Add inputs
collinjackson Aug 14, 2025
0eecd3d
Syntax fix
collinjackson Aug 14, 2025
7d29134
make executable
collinjackson Aug 14, 2025
4e46d88
Clean up scripts
collinjackson Aug 14, 2025
1a9f98b
Fix path
collinjackson Aug 14, 2025
3e60fbb
Propagate errors
collinjackson Aug 15, 2025
1bf0113
Fix negative test
collinjackson Aug 15, 2025
ff49aa7
Try sequential
collinjackson Aug 15, 2025
4534e02
Windows fix
collinjackson Aug 16, 2025
825b5fc
Troubleshooting windows
collinjackson Aug 19, 2025
c5a8b82
Merge remote-tracking branch 'origin/main' into collinjackson/integra…
collinjackson Aug 21, 2025
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
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
clients/cli
proto
tests
scripts

- name: Check system resources
run: |
Expand Down Expand Up @@ -85,16 +86,16 @@ jobs:
run: cargo test --release --tests

# Integration test against production orchestrator
- name: Integration Test
- name: Integration Tests
working-directory: clients/cli
timeout-minutes: 5
timeout-minutes: 3
run: |
if [ -n "${{ secrets.SMOKE_TEST_NODE_IDS }}" ]; then
echo "Running integration test with secret node IDs"
SMOKE_TEST_NODE_IDS="${{ secrets.SMOKE_TEST_NODE_IDS }}" ../../tests/integration_test.sh ./target/release/nexus-network --max-tasks 1
if [ -n "${{ secrets.INTEGRATION_TEST_NODE_IDS }}" ]; then
echo "Running integration tests with configured node IDs"
INTEGRATION_TEST_NODE_IDS="${{ secrets.INTEGRATION_TEST_NODE_IDS }}" bash "${{ github.workspace }}/scripts/run_integration_tests.sh"
else
echo "Running integration test with fallback node IDs"
../../tests/integration_test.sh ./target/release/nexus-network --max-tasks 1
echo "Running integration tests with fallback node IDs"
bash "${{ github.workspace }}/scripts/run_integration_tests.sh"
fi

- name: Ensure checked in generated files are up to date
Expand Down
Loading
Loading