feat(integration_tests): tests removal + simple retry on fixtures

This commit is contained in:
Pravdyvy
2026-08-04 07:40:21 +03:00
parent cfac4d5b0b
commit 9a82a0cfcb
6 changed files with 10 additions and 2184 deletions
+8 -1
View File
@@ -214,7 +214,14 @@ jobs:
with:
image: ${{ needs.ci-image.outputs.image }}
env: RISC0_DEV_MODE=1
run: cargo nextest archive -p integration_tests --archive-file integration-tests.tar.zst --no-pager
run: |
for i in 1 2 3; do
cargo nextest archive -p integration_tests --archive-file integration-tests.tar.zst --no-pager && break
echo "::warning:: Attempt $i failed, cleaning up and retrying..." >&2
rm -rf target/debug/deps/*.o target/debug/incremental 2>/dev/null || true
cargo clean -p integration_tests 2>/dev/null || true
sleep 5
done
- name: Upload integration test archive
uses: actions/upload-artifact@v4