Update workflow to use v4 actions. #57
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: Firmware Build | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
env: | ||
BUILD_TYPE: Release | ||
# Pico-SDK v1.5.1 | ||
PICO_SDK_REF: 6a7db34ff63345a7badec79ebea3aaef1712f374 | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
brickpico_version: ${{steps.version-check.outputs.BRICKPICO_VERSION}} | ||
build_date: ${{steps.version-check.outputs.BUILD_DATE}} | ||
strategy: | ||
matrix: | ||
brickpico_board: ["8", "16"] | ||
pico_board: ["pico", "pico_w"] | ||
steps: | ||
- name: Arm GNU Toolchain (arm-none-eabi-gcc) | ||
uses: carlosperate/arm-none-eabi-gcc-action@v1 | ||
- name: Cache Pico-SDK | ||
id: cache-pico-sdk | ||
uses: actions/cache@v4 | ||
with: | ||
path: pico-sdk | ||
key: ${{runner.os}}-pico-sdk-${{env.PICO_SDK_REF}} | ||
- if: ${{steps.cache-pico-sdk.outputs.cache-hit != 'true' }} | ||
name: Checkout Pico-SDK | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: raspberrypi/pico-sdk | ||
ref: ${{env.PICO_SDK_REF}} | ||
path: pico-sdk | ||
submodules: true | ||
- name: Add PICO_SDK_PATH to Environment | ||
run: | | ||
echo "PICO_SDK_PATH=${{github.workspace}}/pico-sdk" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
path: main | ||
submodules: recursive | ||
- name: Configure CMake | ||
run: cmake -S main -B ${{github.workspace}}/main/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DPICO_BOARD=${{matrix.pico_board}} -DBRICKPICO_BOARD=${{matrix.brickpico_board}} | ||
- name: Check Source Version | ||
id: version-check | ||
run: | | ||
ver=$(awk '/BRICKPICO_VERSION[[:space:]]/ { gsub(/"/,""); print $3; exit; }' main/build/config.h) | ||
echo "BRICKPICO_VERSION=$ver" >> $GITHUB_ENV | ||
echo "BRICKPICO_VERSION=$ver" >> $GITHUB_OUTPUT | ||
date=$(date +%Y%m%d) | ||
echo "BUILD_DATE=$date" >> $GITHUB_ENV | ||
echo "BUILD_DATE=$date" >> $GITHUB_OUTPUT | ||
- name: Build | ||
run: cmake --build ${{github.workspace}}/main/build --config ${{env.BUILD_TYPE}} | ||
- name: Test | ||
working-directory: ${{github.workspace}}/main/build | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
run: | | ||
ls -l brickpico.* | ||
sha256sum brickpico.uf2 | ||
- name: Gather Artifact Files | ||
working-directory: ${{github.workspace}}/main/build | ||
run: | | ||
mkdir dist | ||
cp -av brickpico.uf2 dist/brickpico-${{matrix.brickpico_board}}-${{matrix.pico_board}}.uf2 | ||
cp -av brickpico.elf dist/brickpico-${{matrix.brickpico_board}}-${{matrix.pico_board}}.elf | ||
cp -av brickpico.elf.map dist/brickpico-${{matrix.brickpico_board}}-${{matrix.pico_board}}.elf.map | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware-${{matrix.brickpico_board}}-${{matrix.pico_board}}-build${{github.run_number}}-${{env.BUILD_DATE}} | ||
path: main/build/dist | ||
merge: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
env: | ||
BRICKPICO_VERSION: ${{needs.build.outputs.brickpico_version}} | ||
BUILD_DATE: ${{needs.build.outputs.build_date}} | ||
steps: | ||
- name: Download All Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: bundle | ||
pattern: firmware-* | ||
merge-multiple: true | ||
- name: Calculate checksums | ||
working-directory: bundle | ||
run: | | ||
sha256sum * > sha256sums.txt | ||
ls -la | ||
echo "### Generated firmware files" >> $GITHUB_STEP_SUMMARY | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
cat sha256sums.txt >> $GITHUB_STEP_SUMMARY | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
- name: Upload checksum artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: firmware-checksums | ||
path: bundle/*.txt | ||
- name: Merge Artifacts | ||
uses: actions/upload-artifact/merge@v4 | ||
with: | ||
name: brickpico-firmware-${{env.BUILD_DATE}}-${{env.BRICKPICO_VERSION}}-build${{github.run_number}} | ||
pattern: firmware-* | ||
delete-merged: true | ||