summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorhathach <[email protected]>2025-04-17 17:26:36 +0700
committerhathach <[email protected]>2025-04-17 21:36:09 +0700
commit46d2d4199ea31babbffff51f9eaa65eda81c659b (patch)
tree7d68485de85de4a8e2485a2da1b2418d93fec5da /.github
parent0220852a6e79b0ea33654f17dae56c1ca882ea60 (diff)
run arm-iar with non-forked PR
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml36
-rw-r--r--.github/workflows/hil_test.yml2
2 files changed, 6 insertions, 32 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6419efbe8..7fb13af74 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -111,10 +111,11 @@ jobs:
# ---------------------------------------
# Build IAR
- # Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
+ # Since IAR Token secret is not passed to forked PR, only build non-forked PR with make.
+ # cmake is built by circle-ci. Due to IAR limit capacity, only build oe per family
# ---------------------------------------
arm-iar:
- if: github.repository_owner == 'hathach' && github.event_name == 'push'
+ if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false
needs: set-matrix
uses: ./.github/workflows/build_util.yml
secrets: inherit
@@ -122,39 +123,12 @@ jobs:
fail-fast: false
matrix:
build-system:
- - 'cmake'
+ - 'make'
with:
build-system: ${{ matrix.build-system }}
toolchain: 'arm-iar'
build-args: ${{ toJSON(fromJSON(needs.set-matrix.outputs.json)['arm-iar']) }}
- one-per-family: ${{ github.event_name == 'push' }}
-
-# arm-iar:
-# if: github.repository_owner == 'hathach' && github.event_name == 'push'
-# needs: set-matrix
-# runs-on: [self-hosted, Linux, X64, hifiphile]
-# env:
-# BUILD_ARGS: ${{ join(fromJSON(needs.set-matrix.outputs.json)['arm-iar'], ' ') }}
-# IAR_LMS_BEARER_TOKEN: ${{ secrets.IAR_LMS_BEARER_TOKEN }}
-# steps:
-# - name: Clean workspace
-# run: |
-# echo "Cleaning up previous run"
-# rm -rf "${{ github.workspace }}"
-# mkdir -p "${{ github.workspace }}"
-#
-# - name: Toolchain version
-# run: |
-# iccarm --version
-#
-# - name: Checkout TinyUSB
-# uses: actions/checkout@v4
-#
-# - name: Get Dependencies
-# run: python3 tools/get_deps.py $BUILD_ARGS
-#
-# - name: Build
-# run: python3 tools/build.py --one-per-family --toolchain iar $BUILD_ARGS
+ one-per-family: true
# ---------------------------------------
# Zephyr
diff --git a/.github/workflows/hil_test.yml b/.github/workflows/hil_test.yml
index 257416213..0ad37ffce 100644
--- a/.github/workflows/hil_test.yml
+++ b/.github/workflows/hil_test.yml
@@ -90,7 +90,7 @@ jobs:
# ---------------------------------------
# Hardware in the loop (HIL)
# self-hosted by HFP, build with IAR toolchain, for attached hardware checkout test/hil/hfp.json
- # Since IAR Token secret is not passed to forked PR, only build on PR from the same repo
+ # Since IAR Token secret is not passed to forked PR, only build non-forked PR
# ---------------------------------------
hil-hfp:
if: github.repository_owner == 'hathach' && github.event.pull_request.head.repo.fork == false