Skip to content

Commit

Permalink
export ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed May 4, 2024
1 parent 6293a2c commit 74be9a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
- name: Install generaic tools
run: yes | pacman -Syy make cmake rustup gcc
- name: setup rust toolchain
run: rustup default nightly && cargo install cargo-binutils && export PATH=$PATH:~/.cargo/bin
run: rustup default nightly && cargo install cargo-binutils
- name: Test ${{ matrix.arch }}
run: cd example && make ARCH=${{ matrix.arch }} build
run: cd example && PATH=$PATH:~/.cargo/bin make ARCH=${{ matrix.arch }} build
- name: Install Qemu
run: yes | pacman ${{ matrix.packages }}
- name: Test run
run: make ARCH=${{ matrix.arch }} run
run: PATH=$PATH:~/.cargo/bin make ARCH=${{ matrix.arch }} run

0 comments on commit 74be9a7

Please sign in to comment.