fix library naming #43
Workflow file for this run
This file contains hidden or 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: Rust | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: ⚡ Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo | |
| - name: Install ARM GCC toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gcc-arm-none-eabi | |
| - name: Set permissions | |
| run: chmod +x d | |
| - name: Load sources | |
| run: ./d download-all | |
| - name: Run build | |
| run: cargo run --release --bin stm32-bindings-gen | |
| - name: Run package build | |
| run: | | |
| cd build/stm32-bindings | |
| export CARGO_BUILD_TARGET=thumbv8m.main-none-eabihf | |
| cargo fix --lib -p stm32-bindings --allow-no-vcs | |
| cargo build | |
| cargo package | |
| ls target/package | |
| - name: Upload package build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: crate | |
| path: build/stm32-bindings/target/package/*.crate |