From 2e2e0fd2d218f182e64db16a05b75b73d37184b8 Mon Sep 17 00:00:00 2001 From: ahiuchingau <20424172+ahiuchingau@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:23:00 -0500 Subject: [PATCH] update --- .github/workflows/build-cross-target.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-cross-target.yaml b/.github/workflows/build-cross-target.yaml index ff47610f8..a44b56872 100644 --- a/.github/workflows/build-cross-target.yaml +++ b/.github/workflows/build-cross-target.yaml @@ -23,6 +23,7 @@ jobs: strategy: matrix: target: [ bootloader, can, common, eeprom, i2c, motor-control, sensors, spi ] + fail-fast: false name: ${{ matrix.target }} format steps: - name: Checkout github actions directory @@ -57,6 +58,7 @@ jobs: strategy: matrix: target: [ gantry, gripper, head, pipettes, rear-panel] + fail-fast: false name: ${{ matrix.target }} cross-compile build steps: - name: Checkout github actions directory @@ -85,6 +87,12 @@ jobs: cd build-cross make ${{ matrix.target }}-applications + - name: Build bootloader applications + run: | + cd build-cross + make bootloader-${{ matrix.target }}-applications + - name: Run format-ci run: | + cd build-cross make ${{ matrix.target }}-format-ci \ No newline at end of file