diff options
| author | Zixun LI <[email protected]> | 2026-05-11 16:02:50 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-11 16:02:50 +0200 |
| commit | 4e64f3e91cefab0993a837ac03476173eeeda854 (patch) | |
| tree | 0843841795f9260bea7da7564b61037810e4476a /.github/workflows | |
| parent | dcd2a4bd0f005835d3edc193309ef3484cd9c8b3 (diff) | |
| parent | 3188ed4fd6ccab395b6618d913ebdb44d94c3dcc (diff) | |
Merge pull request #3632 from hathach/msc_os
hcd/dwc2: fix txfifo full check
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 |
