Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit 9813abf

Browse files
bors[bot]almindor
andauthored
Merge #77
77: use --target for CI checks r=Disasm a=almindor Co-authored-by: Ales Katona <[email protected]>
2 parents 23570a0 + d096550 commit 9813abf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
- name: Install riscv gcc
3232
run: sudo apt-get update && sudo apt-get install -y gcc-riscv64-unknown-elf
3333
- name: Run CI script for riscv32imac-unknown-none-elf under ${{ matrix.rust }}
34-
run: TARGET=riscv32imac-unknown-none-elf cargo check
34+
run: cargo check --target riscv32imac-unknown-none-elf
3535
- name: Run CI script for riscv64imac-unknown-none-elf under ${{ matrix.rust }}
36-
run: TARGET=riscv64imac-unknown-none-elf cargo check
36+
run: cargo check --target riscv64imac-unknown-none-elf
3737
- name: Run CI script for riscv64gc-unknown-none-elf under ${{ matrix.rust }}
38-
run: TARGET=riscv64gc-unknown-none-elf cargo check
38+
run: cargo check --target riscv64gc-unknown-none-elf
3939
- name: Check blobs
4040
run: ./check-blobs.sh

0 commit comments

Comments
 (0)