From 09b9350237757a1903127f362f5956a12f236ed1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 16 Sep 2024 11:12:03 +1000 Subject: [PATCH] added bootloader updaters to CI build --- .github/workflows/CI_build_updaters.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/CI_build_updaters.yml diff --git a/.github/workflows/CI_build_updaters.yml b/.github/workflows/CI_build_updaters.yml new file mode 100644 index 00000000..1eef5450 --- /dev/null +++ b/.github/workflows/CI_build_updaters.yml @@ -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/*_BL_UPDATER_*.hex + retention-days: 7