THE REWRITE CONTINUES #150
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
| # SHOULD DO: dedupe these and clean them up | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| name: Build | |
| jobs: | |
| formatting: | |
| name: Check for formatting issues | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Rust Environment | |
| uses: ./.github/actions/setup-rust-environment.yml | |
| with: | |
| embedded: true | |
| cargo-dependencies: "cargo-make cargo-fmt" | |
| - name: Check Formatting | |
| run: cargo fmt -- --check | |
| build_pressure: | |
| name: Build with Pressure Feature | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: sudo apt update && sudo apt install -y cmake protobuf-compiler | |
| - name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '12.2.Rel1' | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: thumbv7em-none-eabihf | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Install cargo fmt | |
| run: rustup component add rustfmt | |
| - uses: actions-rs/cargo@v1 | |
| name: "Install cargo-make" | |
| with: | |
| command: install | |
| args: --force cargo-make | |
| - uses: actions-rs/cargo@v1 | |
| name: "Build with Pressure Feature" | |
| with: | |
| command: build | |
| args: --release --features pressure | |
| build_temperature: | |
| name: Build with Temperature Feature | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: sudo apt update && sudo apt install -y cmake | |
| - name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '12.2.Rel1' | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: thumbv7em-none-eabihf | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - uses: actions-rs/cargo@v1 | |
| name: "Install cargo-make" | |
| with: | |
| command: install | |
| args: --force cargo-make | |
| - uses: actions-rs/cargo@v1 | |
| name: "Build with Temperature Feature" | |
| with: | |
| command: build | |
| args: --release --features temperature | |
| build_strain: | |
| name: Build with Strain Feature | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: sudo apt update && sudo apt install -y cmake protobuf-compiler | |
| - name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '12.2.Rel1' | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| target: thumbv7em-none-eabihf | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - uses: actions-rs/cargo@v1 | |
| name: "Install cargo-make" | |
| with: | |
| command: install | |
| args: --force cargo-make | |
| - uses: actions-rs/cargo@v1 | |
| name: "Build with Strain Feature" | |
| with: | |
| command: build | |
| args: --release --features strain | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| RUST_MIN_STACK: 8388608 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: sudo apt update && sudo apt install -y cmake protobuf-compiler | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - uses: actions-rs/cargo@v1 | |
| name: "Install cargo-make" | |
| with: | |
| command: install | |
| args: --force cargo-make | |
| - uses: actions-rs/cargo@v1 | |
| name: "Run Host Tests" | |
| with: | |
| command: make | |
| args: test-host |