Skip to content

Add CI workflow for MSYS2/UCRT64 Windows build. #137

Add CI workflow for MSYS2/UCRT64 Windows build.

Add CI workflow for MSYS2/UCRT64 Windows build. #137

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@v4
with:
name: AM32-bootloader-updaters-hex
path: |
obj/*_BL_UPDATER_*.hex
retention-days: 60
- name: Archive build amj
uses: actions/upload-artifact@v4
with:
name: AM32-bootloader-updaters-amj
path: |
obj/*_BL_UPDATER_*.amj
retention-days: 60