chore(stm32): change default linker script for stm32f4 #49
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install target | |
run: rustup target add thumbv7em-none-eabihf thumbv6m-none-eabi | |
- name: Build | |
run: cargo build --verbose | |
- name: Build rp2040 | |
working-directory: ./boards/rp2040 | |
run: cargo build --verbose |