prepare for v13 release #51
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: CI Build Bootloader updaters Linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build CI Bootloader Updaters | |
run: | | |
make arm_sdk_install | |
make updaters -j8 | |
- name: Archive build hex | |
uses: actions/upload-artifact@v3 | |
with: | |
name: AM32-bootloader-updaters-hex | |
path: | | |
obj/*_BL_UPDATER_*.hex | |
retention-days: 7 | |
- name: Archive build amj | |
uses: actions/upload-artifact@v3 | |
with: | |
name: AM32-bootloader-updaters-amj | |
path: | | |
obj/*_BL_UPDATER_*.amj | |
retention-days: 7 |