panda: switch to new bitrate API #104
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: Linux-Windows cross-compile | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add rust target | |
| run: | | |
| rustup target add x86_64-pc-windows-gnu | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get -y install clang gcc-mingw-w64-x86-64 libclang-dev | |
| - name: Build | |
| run: cargo build --verbose --target=x86_64-pc-windows-gnu --features=all | |
| - name: Build Examples | |
| run: cargo build --verbose --target=x86_64-pc-windows-gnu --features=all --examples |