Skip to content

Commit

Permalink
ci: build all examples in ci
Browse files Browse the repository at this point in the history
Signed-off-by: HaoboGu <[email protected]>
  • Loading branch information
HaoboGu committed Mar 1, 2024
1 parent 72ec627 commit 4fe5650
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,24 @@ jobs:
- uses: actions/checkout@v3
- name: Install target
run: rustup target add thumbv7em-none-eabihf thumbv6m-none-eabi
- name: Build
- name: Build rmk
working-directory: ./rmk
run: cargo build --verbose
run: cargo build
- name: Build rp2040
working-directory: ./boards/rp2040
run: cargo build --verbose
run: cargo build
- name: Build stm32h7
working-directory: ./boards/stm32h7
run: cargo build --verbose
run: cargo build
- name: Build stm32f1
working-directory: ./boards/stm32f1
run: cargo build
- name: Build stm32f4
working-directory: ./boards/stm32f4
run: cargo build
- name: Build nrf52840
working-directory: ./boards/nrf52840
run: cargo build
- name: Build nrf52840
working-directory: ./boards/nrf52840
run: cargo build

0 comments on commit 4fe5650

Please sign in to comment.