diff --git a/.github/workflows/executable-workflow.yaml b/.github/workflows/executable-workflow.yaml index 096be309c..8418c8c32 100644 --- a/.github/workflows/executable-workflow.yaml +++ b/.github/workflows/executable-workflow.yaml @@ -48,6 +48,7 @@ jobs: - name: Cross-Compile/Build uses: ./actions/.github/actions/cross-compile-build + host-compile-test: name: "Host-Compile/Test" runs-on: "ubuntu-20.04" @@ -69,6 +70,12 @@ jobs: - name: Host-Compile/Test uses: ./actions/.github/actions/host-compile-test + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: ~ + build-simulator: name: "Build Simulator" runs-on: "ubuntu-20.04" @@ -77,6 +84,12 @@ jobs: matrix: sim-target: ${{ fromJSON(inputs.sub-targets) }} steps: + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: my-artifact + path: ~ + - name: Build Simulator uses: ./actions/.github/actions/build-simulator with: