60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: Setup Toolchain
|
|
|
|
inputs:
|
|
toolchain:
|
|
description: 'Toolchain name'
|
|
required: true
|
|
|
|
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: '13.2.Rel1'
|
|
|
|
- name: Pull ESP-IDF docker
|
|
if: inputs.toolchain == 'esp-idf'
|
|
uses: ./.github/actions/setup_toolchain/espressif
|
|
with:
|
|
toolchain: ${{ inputs.toolchain }}
|
|
|
|
- name: Get Toolchain URL
|
|
if: >-
|
|
inputs.toolchain != 'arm-gcc' &&
|
|
inputs.toolchain != 'esp-idf'
|
|
id: set-toolchain-url
|
|
run: |
|
|
TOOLCHAIN_URL=$(jq -r '."${{ inputs.toolchain }}"' .github/actions/setup_toolchain/toolchain.json)
|
|
echo "toolchain_url=$TOOLCHAIN_URL"
|
|
echo "toolchain_url=$TOOLCHAIN_URL" >> $GITHUB_OUTPUT
|
|
shell: bash
|
|
|
|
- name: Download Toolchain
|
|
if: >-
|
|
inputs.toolchain != 'arm-gcc' &&
|
|
inputs.toolchain != 'esp-idf'
|
|
uses: ./.github/actions/setup_toolchain/download
|
|
with:
|
|
toolchain: ${{ inputs.toolchain }}
|
|
toolchain_url: ${{ steps.set-toolchain-url.outputs.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
|