diff options
| author | 沈玴興 <[email protected]> | 2026-03-07 22:54:15 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-07 22:54:15 +0800 |
| commit | 571445d26f1484a4033b504acb7c700fde340c76 (patch) | |
| tree | d5f4b256120799bd6a00c6a513a8e724b9cb77b8 /.github/workflows | |
| parent | 0a45308a296251e4376815b21f89f0038c75a60e (diff) | |
| parent | da307fa85b4002c875284bb82d7db1ca1bc7347d (diff) | |
Merge branch 'hathach:master' into master
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 9 | ||||
| -rw-r--r-- | .github/workflows/claude-code-review.yml | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d8b90f5a..ab1d3611f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -291,7 +291,14 @@ jobs: - name: Test on actual hardware run: | - python3 test/hil/hil_test.py ${{ env.HIL_JSON }} $SKIP_BOARDS + python3 test/hil/hil_test.py ${{ env.HIL_JSON }} $SKIP_BOARDS || \ + (if [ -f "${{ env.HIL_JSON }}.skip" ]; then + SKIP_BOARDS=$(cat "${{ env.HIL_JSON }}.skip") + echo "Re-running with SKIP_BOARDS=$SKIP_BOARDS" + python3 test/hil/hil_test.py ${{ env.HIL_JSON }} $SKIP_BOARDS + else + exit 1 + fi) # --------------------------------------- # Hardware in the loop (HIL) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 5ba2fe900..5d7efc115 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -6,6 +6,7 @@ on: jobs: claude-review: + if: false runs-on: ubuntu-latest permissions: contents: read |
