Skip to content

Commit

Permalink
added bootloader updaters to CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Sep 16, 2024
1 parent b524159 commit 1b00e7a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/CI_build_updaters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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
uses: actions/upload-artifact@v3
with:
name: AM32-bootloader-updaters
path: |
obj/*.hex
retention-days: 7

0 comments on commit 1b00e7a

Please sign in to comment.