mirror of
https://github.com/hathach/tinyusb.git
synced 2025-02-23 00:40:12 +00:00
- enable --one-per-family to build 1 board per family, also skip family if board specified in -b also present - minimize ci run for push event - only build one board per family - skip hil test on both pi4 and hfp - full build will be runn for PR event - IAR always build 1 board per family regardless of event - update build.py to optimize make - remove all setup python since we don't really need it
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
name: Setup Toolchain
|
|
|
|
inputs:
|
|
toolchain:
|
|
description: 'Toolchain name'
|
|
required: true
|
|
toolchain_url:
|
|
description: 'Toolchain URL or version'
|
|
required: false
|
|
|
|
outputs:
|
|
build_option:
|
|
description: 'Build option for the toolchain e.g --toolchain clang'
|
|
value: ${{ steps.set-toolchain-option.outputs.build_option }}
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install ARM GCC
|
|
if: inputs.toolchain == 'arm-gcc'
|
|
uses: carlosperate/arm-none-eabi-gcc-action@v1
|
|
with:
|
|
release: '12.3.Rel1'
|
|
|
|
- name: Pull ESP-IDF docker
|
|
if: inputs.toolchain == 'esp-idf'
|
|
uses: ./.github/actions/setup_toolchain/espressif
|
|
with:
|
|
toolchain: ${{ inputs.toolchain }}
|
|
toolchain_url: ${{ inputs.toolchain_url }}
|
|
|
|
- name: Download Toolchain
|
|
if: >-
|
|
inputs.toolchain != 'arm-gcc' &&
|
|
inputs.toolchain != 'arm-iar' &&
|
|
inputs.toolchain != 'esp-idf'
|
|
uses: ./.github/actions/setup_toolchain/download
|
|
with:
|
|
toolchain: ${{ inputs.toolchain }}
|
|
toolchain_url: ${{ inputs.toolchain_url }}
|
|
|
|
- name: Set toolchain option
|
|
id: set-toolchain-option
|
|
run: |
|
|
BUILD_OPTION=""
|
|
if [[ "${{ inputs.toolchain }}" == *"clang"* ]]; then
|
|
BUILD_OPTION="--toolchain clang"
|
|
elif [[ "${{ inputs.toolchain }}" == "arm-iar" ]]; then
|
|
BUILD_OPTION="--toolchain iar"
|
|
fi
|
|
echo "build_option=$BUILD_OPTION"
|
|
echo "build_option=$BUILD_OPTION" >> $GITHUB_OUTPUT
|
|
shell: bash
|