Skip to content

Commit

Permalink
ci: fix example ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed May 3, 2024
1 parent c1294be commit 6a9780e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/example.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Example CI
name: Build Example CI

on:
workflow_dispatch:
Expand All @@ -10,12 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Go to example dir
run: cd example
- name: Test riscv64
run: make ARCH=riscv64 run
run: cd example && make ARCH=riscv64 build
- name: Test aarch64
run: make ARCH=aarch64 run
run: cd example && make ARCH=aarch64 build
- name: Test x86_64
run: make ARCH=x86_64 run

run: cd example && make ARCH=x86_64 build
- name: Test loongarch64
run: cd example && make ARCH=loongarch64 build

0 comments on commit 6a9780e

Please sign in to comment.