Skip to content

Commit

Permalink
testing artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Jan 16, 2024
1 parent 02707e2 commit e8e2d1c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/executable-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit e8e2d1c

Please sign in to comment.