Retire jetson (#347) #48
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'binding/rust/**' | |
- '!binding/rust/README.md' | |
- 'lib/common/**' | |
- 'lib/linux/**' | |
- 'lib/mac/**' | |
- 'lib/raspberry-pi/**' | |
- 'lib/windows/**' | |
- '.github/workflows/rust.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'binding/rust/**' | |
- '!binding/rust/README.md' | |
- 'lib/common/**' | |
- 'lib/linux/**' | |
- 'lib/mac/**' | |
- 'lib/raspberry-pi/**' | |
- 'lib/windows/**' | |
- '.github/workflows/rust.yml' | |
env: | |
CARGO_TERM_COLOR: always | |
defaults: | |
run: | |
working-directory: binding/rust | |
shell: bash | |
jobs: | |
build-github-hosted: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Rust pre-build | |
run: bash copy.sh | |
- name: Rust dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt install libasound2-dev -y | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Rust build | |
run: cargo build --verbose | |
- name: Rust run tests | |
run: PV_ACCESS_KEY=${{secrets.PV_VALID_ACCESS_KEY}} cargo test --verbose | |
build-self-hosted: | |
runs-on: ${{ matrix.machine }} | |
strategy: | |
matrix: | |
machine: [rpi3-32, rpi3-64, rpi4-32, rpi4-64, rpi5-64] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Rust pre-build | |
run: bash copy.sh | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- name: Rust build | |
run: cargo build --verbose | |
- name: Rust run tests | |
run: PV_ACCESS_KEY=${{secrets.PV_VALID_ACCESS_KEY}} cargo test --verbose |