2020-12-08 16:04:16 -06:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-12-08 16:39:39 -06:00
|
|
|
- name : Install ARM compiler
|
|
|
|
run: sudo apt-get install gcc-arm-linux-gnueabihf -y
|
|
|
|
- name: Set ARM compiler as environment variable
|
|
|
|
run: export CC=arm-linux-gnueabihf-gcc
|
2020-12-08 16:27:49 -06:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
target: armv7-unknown-linux-gnueabihf
|
|
|
|
override: true
|
2020-12-08 16:04:16 -06:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
|
|
|
run: cargo test --verbose
|