fix(ci): give up, the bsd/linux commands difference is anoying #5
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: CI build | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "*.md" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use nightly Rust | |
run: | | |
rustup default nightly | |
rustup target add riscv32imac-unknown-none-elf | |
rustup target add riscv32imafc-unknown-none-elf | |
rustup target add riscv32i-unknown-none-elf | |
- name: Fetch Deps | |
run: | | |
mkdir -p ../ch32-data/build/ | |
cd ../ch32-data/build/ | |
git clone https://github.com/ch32-rs/ch32-metapac.git | |
- name: Build Only | |
run: ./ci.sh |