diff options
| author | HiFiPhile <[email protected]> | 2026-05-11 21:11:28 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2026-05-11 21:11:28 +0200 |
| commit | 4242ef7ac607f2869e8ad63c234d9f957297d640 (patch) | |
| tree | ab71598415798e8f636964ea3a9b1d08f587bbf7 /.github/workflows | |
| parent | 7eb806c6073279c4fd791f542a7230aeab582b2c (diff) | |
| parent | 4e64f3e91cefab0993a837ac03476173eeeda854 (diff) | |
Merge remote-tracking branch 'tinyusb/master' into stm32c5
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a88b8ffba..a83a997c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -326,13 +326,15 @@ jobs: github.repository_owner == 'hathach' && !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true) runs-on: [ self-hosted, Linux, X64, hifiphile ] + timeout-minutes: 30 env: IAR_LMS_BEARER_TOKEN: ${{ secrets.IAR_LMS_BEARER_TOKEN }} + PYTHONUNBUFFERED: '1' steps: - name: Clean workspace run: | echo "Cleaning up previous run" - rm -rf "${{ github.workspace }}"3 + rm -rf "${{ github.workspace }}" mkdir -p "${{ github.workspace }}" - name: Toolchain version @@ -356,4 +358,5 @@ jobs: run: python3 tools/build.py --toolchain iar $BUILD_ARGS - name: Test on actual hardware (hardware in the loop) - run: python3 test/hil/hil_test.py hfp.json + run: | + python3 test/hil/hil_test.py hfp.json |
