diff options
| author | hathach <[email protected]> | 2025-10-01 20:56:20 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-10-02 10:43:55 +0700 |
| commit | 6d32256188d578079b0d050509f2c7d7178897a0 (patch) | |
| tree | 76e5f21d6321480da5bb1f87b318c06793455cd5 /.github/workflows | |
| parent | 26939587b55dc3c6958a3b630664e6a0b7d9da9b (diff) | |
HIL add timeout for opening mtp device
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0daefab9..676e2d428 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -199,15 +199,18 @@ 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 - name: Download Artifacts + if: github.run_attempt == '1' uses: actions/download-artifact@v4 with: path: cmake-build |
