Skip to content

Commit

Permalink
fix: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctoyotta1024 committed Oct 30, 2024
1 parent a92b4a3 commit f59dc55
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,14 @@ jobs:
path: ./build/

compile:
needs: build
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download CLEO Build
uses: actions/download-artifact@v4
with:
name: cleo-build-artifact
path: ./build/

- name: Download YAXT
uses: actions/download-artifact@v4
Expand All @@ -83,18 +86,28 @@ jobs:
name: yac-artifact
path: ${{ runner.temp }}/yac/

- name: Build main
run: cd build && make

compile_adia0d:
runs-on: ubuntu-latest
needs: [build, compile]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download CLEO Build
uses: actions/download-artifact@v4
with:
name: cleo-build-artifact
path: ./build/

- name: Build main
run: cd build && make
- name: Build adia0d
run: cd build && make adia0d

compile_examples:
needs: compile
runs-on: ubuntu-latest
needs: [build, compile]
steps:
- name: Build example adia0d
run: cd build && make adia0d
Expand Down

0 comments on commit f59dc55

Please sign in to comment.