Use rust #8
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: Rust check | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get install -y libssl-dev pkg-config clang build-essential libusb-1.0-0 libusb-1.0-0-dev g++-aarch64-linux-gnu g++-arm-linux-gnueabihf g++-x86-64-linux-gnu | |
- name: Install toolchains | |
run: rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu armv7-unknown-linux-gnueabihf | |
- name: Check fmt | |
run: make fmt | |
- name: Lint | |
run: make lint | |
- name: Tests usual | |
run: make test | |
- name: Build x86_64 | |
run: CARGO_BUILD_TARGET=x86_64-unknown-linux-gnu make build | |
- name: Build aarch64 | |
run: CARGO_BUILD_TARGET=aarch64-unknown-linux-gnu make build | |
- name: Build armv7 | |
run: CARGO_BUILD_TARGET=armv7-unknown-linux-gnueabihf make build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: target/release/debian/*.deb |