From e8e2d1cd77adbb3887a3f9e1fe0f20cfc7f8ec1c Mon Sep 17 00:00:00 2001 From: ahiuchingau <20424172+ahiuchingau@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:07:13 -0500 Subject: [PATCH] testing artifacts --- .github/workflows/executable-workflow.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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: