diff options
| author | Ha Thach <[email protected]> | 2025-11-29 01:41:30 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-29 01:41:30 +0700 |
| commit | 7ee288bc223db393d68c7bdb09bf7c05ffd2eb03 (patch) | |
| tree | 0c706cb41224eceee1870535fd8de74d3798bb7b /.github/actions/setup_toolchain/action.yml | |
| parent | 583fe844e9e007a3a87c301c057c5128a8f249e0 (diff) | |
change armgcc setup to manual download due to issue with action (#3377)
* change armgcc setup to manual download due to issue with action
* build windows, macos with cmake as well
Diffstat (limited to '.github/actions/setup_toolchain/action.yml')
| -rw-r--r-- | .github/actions/setup_toolchain/action.yml | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/.github/actions/setup_toolchain/action.yml b/.github/actions/setup_toolchain/action.yml index d15a29f20..f78fe4dd3 100644 --- a/.github/actions/setup_toolchain/action.yml +++ b/.github/actions/setup_toolchain/action.yml @@ -13,12 +13,6 @@ outputs: runs: using: "composite" steps: - - name: Install ARM GCC - if: inputs.toolchain == 'arm-gcc' - uses: carlosperate/arm-none-eabi-gcc-action@v1 - with: - release: '14.2.Rel1' - - name: Pull ESP-IDF docker if: inputs.toolchain == 'esp-idf' uses: ./.github/actions/setup_toolchain/espressif @@ -26,9 +20,7 @@ runs: toolchain: ${{ inputs.toolchain }} - name: Get Toolchain URL - if: >- - inputs.toolchain != 'arm-gcc' && - inputs.toolchain != 'esp-idf' + if: inputs.toolchain != 'esp-idf' id: set-toolchain-url env: TOOLCHAIN: ${{ inputs.toolchain }} @@ -39,9 +31,7 @@ runs: shell: bash - name: Download Toolchain - if: >- - inputs.toolchain != 'arm-gcc' && - inputs.toolchain != 'esp-idf' + if: inputs.toolchain != 'esp-idf' uses: ./.github/actions/setup_toolchain/download with: toolchain: ${{ inputs.toolchain }} |
