Crates for our Nordic boards #34
Workflow file for this run
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 for all boards | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main", "*"] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
board_directory: [ | |
libcrux-nucleo-l4r5zi, | |
libcrux-nrf52840, | |
libcrux-nrf52810, | |
libcrux-nrf52832, | |
libcrux-nrf5340, | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: thumbv7em-none-eabihf,thumbv7em-none-eabi,thumbv8m.main-none-eabihf | |
- name: Install flip-link | |
run: cargo install flip-link | |
- name: Build | |
working-directory: ${{ matrix.board_directory }} | |
run: cargo build --verbose |