summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordp111 <[email protected]>2024-08-15 21:05:41 +0100
committerGitHub <[email protected]>2024-08-15 21:05:41 +0100
commit802713523ed97b3a5190d778d19a9814efe0cab9 (patch)
tree5b72c2a68a74f56c53e88c542f5596e589db1fc0 /.github/workflows
parent18b5affce9afb26141c58f59ed89ad34385a0f8f (diff)
parentb8d3c0c4a8e005bcfcc4ed04556e6da54f235ccc (diff)
Merge pull request #1 from hathach/master
Sync
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml19
-rw-r--r--.github/workflows/build_util.yml13
2 files changed, 22 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b3dc3ec42..fde9400a7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -58,9 +58,8 @@ jobs:
fail-fast: false
matrix:
toolchain:
- # - 'arm-clang' is built by circle-ci
+ # - 'arm-clang' is built by circle-ci in PR
- 'aarch64-gcc'
- - 'arm-gcc'
- 'msp430-gcc'
- 'riscv-gcc'
with:
@@ -70,6 +69,20 @@ jobs:
one-per-family: ${{ github.event_name != 'pull_request' }}
# ---------------------------------------
+ # Build CMake arm-gcc
+ # only build with push, for PR: all board is built by circle-ci
+ # ---------------------------------------
+ cmake-arm-gcc:
+ if: github.event_name == 'push'
+ needs: set-matrix
+ uses: ./.github/workflows/build_util.yml
+ with:
+ build-system: 'cmake'
+ toolchain: 'arm-gcc'
+ build-args: ${{ toJSON(fromJSON(needs.set-matrix.outputs.json)['arm-gcc'].family) }}
+ one-per-family: true
+
+ # ---------------------------------------
# Build Make
# ---------------------------------------
make:
@@ -80,7 +93,7 @@ jobs:
fail-fast: false
matrix:
toolchain:
- # 'arm-clang' is built by circle-ci
+ # 'arm-clang' would be built by circle-ci
- 'aarch64-gcc'
- 'arm-gcc'
- 'msp430-gcc'
diff --git a/.github/workflows/build_util.yml b/.github/workflows/build_util.yml
index b0a87d4df..e983f06d1 100644
--- a/.github/workflows/build_util.yml
+++ b/.github/workflows/build_util.yml
@@ -58,11 +58,10 @@ jobs:
shell: bash
- name: Build
- if: inputs.toolchain != 'esp-idf'
run: |
- python tools/build.py -s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ steps.set-one-per-family.outputs.build_option }} ${{ matrix.arg }}
-
- - name: Build using ESP-IDF docker
- if: inputs.toolchain == 'esp-idf'
- run: |
- docker run --rm -v $PWD:/project -w /project espressif/idf:${{ inputs.toolchain_version }} python3 tools/build.py ${{ matrix.arg }}
+ if [ "${{ inputs.toolchain }}" == "esp-idf" ]; then
+ docker run --rm -v $PWD:/project -w /project espressif/idf:${{ inputs.toolchain_version }} python3 tools/build.py ${{ matrix.arg }}
+ else
+ python tools/build.py -s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ steps.set-one-per-family.outputs.build_option }} ${{ matrix.arg }}
+ fi
+ shell: bash