chore: bump version for repo transfer, update links #101
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: metapac build | |
on: | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- '*.md' | |
push: | |
branches: ["main"] | |
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 riscv32imafc-unknown-none-elf | |
- name: Prepare dependencies | |
run: | | |
./d download-all | |
- name: Build | |
run: | | |
./d gen | |
- name: Test | |
run: | | |
cd build/hpm-metapac/ | |
cargo build --features pac,metadata,rt,memory-x,hpm6750 --target riscv32imafc-unknown-none-elf | |
cargo build --features pac,metadata,rt,memory-x,hpm6360 --target riscv32imafc-unknown-none-elf | |
cargo build --features pac,metadata,rt,memory-x,hpm6260 --target riscv32imafc-unknown-none-elf | |
cargo build --features pac,metadata,rt,memory-x,hpm5361 --target riscv32imafc-unknown-none-elf | |
cargo build --features pac,metadata,rt,memory-x,hpm6880 --target riscv32imafc-unknown-none-elf | |
cargo doc --features pac,metadata,rt,memory-x,hpm5361 --target riscv32imafc-unknown-none-elf |