Update ESP32 series to IDF 5.1.3 #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smoketest Dockerfile builds for selected targets | |
on: | |
pull_request: | |
paths: | |
- '.devcontainer/sources/*' | |
- '.github/workflows/*' | |
# push: | |
# paths: | |
# - '.devcontainer/sources/*' | |
# - '.github/workflows/*' | |
jobs: | |
build-target: | |
strategy: | |
fail-fast: false # Continues to build other targets in the matrix, even if one fails. | |
matrix: # Add the target and build type you wish to generate firmware for: | |
include: [ | |
{ target: SL_STK3701A, build-type: Debug, container: AzureRTOS}, | |
{ target: SL_STK3701A, build-type: Debug, container: All}, | |
{ target: ST_STM32F769I_DISCOVERY, build-type: Debug, container: ChibiOS }, | |
{ target: ST_STM32F769I_DISCOVERY, build-type: Debug, container: All }, | |
{ target: M5Core2, build-type: Debug, container: ESP32 }, | |
{ target: M5Core2, build-type: Debug, container: All }, | |
# { target: NXP_MIMXRT1060_EVK, build-type: Debug, container: FreeRTOS }, # No FreeRTOS container yet. | |
{ target: NXP_MIMXRT1060_EVK, build-type: Debug, container: All }, | |
{ target: TI_CC1352R1_LAUNCHXL, build-type: Debug, container: TI, radio-freq: 915 }, # Currently broken. | |
{ target: TI_CC1352R1_LAUNCHXL, build-type: Debug, container: All, radio-freq: 915 }, # Currently broken. | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Update repo submodules | |
run: | | |
git submodule update --init | |
- name: Adjust config templates for a devcontainer | |
run: | | |
# Move into the config directory | |
pushd config | |
# Rename the templates | |
mv user-prefs.TEMPLATE.json user-prefs.json | |
mv user-tools-repos.TEMPLATE.json user-tools-repos.json | |
# Adjust the file content for a valid radio frequency (TI targets) | |
sed -i -- 's|"RADIO_FREQUENCY": "CHANGE_ME_TO_A_VALID_VALUE_868_OR_915"|"RADIO_FREQUENCY": "${{ matrix.radio-freq }}"|g' user-prefs.json | |
# Adjust the file content for a devcontainer | |
sed -i -- 's|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json | |
# Move out of the config directory | |
popd | |
- name: Adjust devcontainer.json for ${{ matrix.container }} source | |
run: | | |
# Move into the .devcontainer directory | |
pushd .devcontainer | |
# Target the dockerfile source. | |
sed -i -- 's|"dockerFile": "Dockerfile.All"|"dockerFile": "sources/Dockerfile.${{ matrix.container }}"|g' devcontainer.json | |
# Move out of the .devcontainer directory | |
popd | |
- name: Build ${{ matrix.target }} ${{ matrix.build-type }} Firmware | |
uses: devcontainers/ci@v0.3 | |
with: | |
push: never | |
runCmd: | | |
# Build target: | |
cmake --preset=${{ matrix.target }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} | |
cmake --build build | |