From 5a547c58e224badb4a4d1e85b92082a5ee46cb6a Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Wed, 25 Oct 2023 03:29:01 -0400 Subject: [PATCH] download artifact from main job --- .github/workflows/build-firmware.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index 48acf8281b..f9470515e7 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -554,7 +554,19 @@ jobs: # 'OS="Windows_NT"' allows us to build Windows executable on unix run: OS="Windows_NT" bash misc/jenkins/build_simulator.sh - # Build the firmware! + - name: check openblt + run: ls -l ./firmware/ext/openblt/Host/ + + - name: Download OpenBLT BootCommander Tool + uses: actions/download-artifact@v3 + with: + name: bootcomander-linux + path: ./firmware/ext/openblt/Host/ + + - name: check openblt + run: ls -l ./firmware/ext/openblt/Host/ + + # Build the firmware! - name: Build Firmware if: ${{ env.skip != 'true' }} run: bash misc/jenkins/compile_other_versions/compile.sh ${{matrix.folder}} ${{matrix.build-target}}