Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ jobs:
# 6️⃣ Run all tests (including Python)
- name: Run all tests
run: bazel test --verbose_failures //...

# 7️⃣ Upload test logs
- name: Upload test logs - Linux
if: always()
uses: actions/upload-artifact@v6
with:
name: bazel-test-logs-linux
path: bazel-testlogs/
if-no-files-found: ignore
retention-days: 30
10 changes: 10 additions & 0 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,13 @@ jobs:
# Run all tests (including Python)
- name: Run all tests
run: bazelisk test --verbose_failures //...

# Upload test logs
- name: Upload test logs - macOS
if: always()
uses: actions/upload-artifact@v6
with:
name: bazel-test-logs-macos
path: bazel-testlogs/
if-no-files-found: ignore
retention-days: 30
12 changes: 11 additions & 1 deletion .github/workflows/ci_wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,14 @@ jobs:

# 4️⃣ Smoke test: run solve_board under Node.js — pass if it does not crash
- name: Smoke test solve_board_wasm
run: node bazel-bin/examples/wasm/solve_board.js
run: node bazel-bin/examples/wasm/solve_board.js

# 5️⃣ Upload test logs
- name: Upload test logs - WASM
if: always()
uses: actions/upload-artifact@v6
with:
name: bazel-test-logs-wasm
path: bazel-testlogs/
if-no-files-found: ignore
retention-days: 30
10 changes: 10 additions & 0 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ jobs:
# Run all tests (including Python)
- name: Run all tests
run: bazel test --verbose_failures //...

# Upload test logs
- name: Upload test logs - Windows
if: always()
uses: actions/upload-artifact@v6
with:
name: bazel-test-logs-windows
path: bazel-testlogs/
if-no-files-found: ignore
retention-days: 30
Loading