ci: fix example ci #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Example CI | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
- name: Test riscv64 | |
run: cd example && make ARCH=riscv64 build | |
- name: Test aarch64 | |
run: cd example && make ARCH=aarch64 build | |
- name: Test x86_64 | |
run: cd example && make ARCH=x86_64 build | |
- name: Test loongarch64 | |
run: cd example && make ARCH=loongarch64 build |