store artifact #6
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 All | |
on: | |
push: | |
branches: [main, addBasicCI] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: "latest" | |
- name: Build Libraries | |
working-directory: Software/GuitarPedal/ | |
run: ./ci/build_libs.sh | |
- name: Build GuitarPedal firmware | |
working-directory: Software/GuitarPedal/ | |
run: ./ci/build_app.sh | |
- name: Archive 125b .bin | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 125b Firmware | |
path: | | |
Software/GuitarPedal/build/guitarpedal.bin | |
if-no-files-found: error |