Skip to content

Commit

Permalink
Add makefile test.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSprenger committed Sep 10, 2024
1 parent 5f5289b commit 8de26a5
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 22 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
on:
push:
branches: [ master ]
pull_request:

name: Build

jobs:
build:
name: All
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 all binaries"
with:
command: build
args: --release
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
- 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-messages


22 changes: 0 additions & 22 deletions .github/workflows/rust.yml

This file was deleted.

14 changes: 14 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true

[config]
default_to_workspace = false

# -----------------------
# Host Testing
# -----------------------

[tasks.test-messages]
command = "cargo"
args = ["test", "-p", "messages", "--target", "${CARGO_MAKE_RUST_TARGET_TRIPLE}", "--features", "std", "--no-default-features"]
env = {RUST_MIN_STACK = "8388608"}

0 comments on commit 8de26a5

Please sign in to comment.