diff options
| author | Ha Thach <[email protected]> | 2025-10-02 19:58:12 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-02 19:58:12 +0700 |
| commit | c1bf19ed6cf1eaa791f221c1bc5ce4b3d069f76d (patch) | |
| tree | 60fe2447d25af0ab07b80f435d79a147cf717d8f /.github/workflows | |
| parent | f655d210b17fad3d2e95c7ef07e114a2f0b6dac6 (diff) | |
| parent | 610f353d8d602c3192f9edc03669ab792056f7da (diff) | |
Merge pull request #3023 from ennebi/mtp
Add support for MTP device class
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff59421ce..9243c866d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -199,25 +199,28 @@ jobs: runs-on: [self-hosted, X64, hathach, hardware-in-the-loop] steps: - name: Clean workspace - if: github.run_attempt == '1' run: | echo "Cleaning up for the first run" rm -rf "${{ github.workspace }}" mkdir -p "${{ github.workspace }}" - name: Checkout TinyUSB - if: github.run_attempt == '1' uses: actions/checkout@v4 - with: - sparse-checkout: test/hil - name: Download Artifacts - if: github.run_attempt == '1' uses: actions/download-artifact@v4 with: path: cmake-build merge-multiple: true + - name: Cache skip list + uses: actions/cache@v4 + with: + path: ${{ env.HIL_JSON }}.skip + key: hil-skip-${{ github.run_id }}-${{ github.run_attempt }} + restore-keys: | + hil-skip-${{ github.run_id }}- + - name: Test on actual hardware run: | ls cmake-build/ |
