Skip to content

Commit

Permalink
Test 2 stage host compiler (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue authored Jul 10, 2024
1 parent abb1923 commit a30881e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,8 @@ jobs:
run: |
make frontend
rm output/*.tar
- name: Test
run: make test
- uses: actions/upload-artifact@v4
with:
name: raspi-bullseye-armhf-linux_x86_64
Expand Down Expand Up @@ -476,6 +478,8 @@ jobs:
run: |
make frontend
rm output/*.tar
- name: Test
run: make test
- uses: actions/upload-artifact@v4
with:
name: bullseye-arm64-linux_x86_64
Expand Down Expand Up @@ -533,4 +537,4 @@ jobs:
with:
allowUpdates: true
artifacts: "**/*"
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ jobs:
run: |
make frontend
rm output/*.tar
{%- if task.host.os == "linux" and task.host.port == "x86_64" %}
- name: Test
run: make test
{%- endif %}
- uses: actions/upload-artifact@v4
with:
name: {{ task.target.os }}-{{ task.target.port }}-{{ task.host.os }}_{{ task.host.port }}
Expand Down

0 comments on commit a30881e

Please sign in to comment.