fix UF2 version with cmake #5
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: Build CMake | |
on: | |
pull_request: | |
push: | |
repository_dispatch: | |
release: | |
types: | |
- created | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
# --------------------------------------- | |
# Build ARM family | |
# --------------------------------------- | |
ARM: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
board: | |
# Alphabetical order by family | |
- 'metro_m7_1011' | |
- 'stm32f303disco' | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install Ninja | |
run: sudo apt install -y ninja-build | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout common submodules in lib | |
run: git submodule update --init lib/tinyusb lib/uf2 | |
- name: Install ARM GCC | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: '11.2-2022.02' | |
- name: Build | |
run: | | |
cmake . -B _build -G Ninja -DCMAKE_BUILD_TYPE=MinSizeRel -DBOARD=${{ matrix.board }} | |
cmake --build _build | |
# - uses: actions/upload-artifact@v3 | |
# with: | |
# name: ${{ matrix.board }} | |
# path: | | |
# _build/ports/*/tinyusb.bin | |
# _build/ports/*/tinyusb.hex | |
# _build/ports/*/apps/*/*.uf2 |