Skip to content

vendor etcetera

vendor etcetera #564

Workflow file for this run

permissions:
contents: read
on:
push:
branches: [main]
pull_request:
name: "no-std"
jobs:
#
nostd:
name: "${{ matrix.target }}"
runs-on: ubuntu-latest
strategy:
matrix:
target: [thumbv7m-none-eabi, aarch64-unknown-none]
steps:
- name: "checkout"
uses: actions/checkout@v4
with:
submodules: true
- name: "Install stable"
uses: dtolnay/rust-toolchain@stable
- name: "rustup target add ${{ matrix.target }}"
run: rustup target add ${{ matrix.target }}
- name: "cargo check -F all,no_std,unsafe"
run: cargo check --target ${{ matrix.target }} -F all,no_std,unsafe
- name: "cargo check -F all,no_std,safe"
run: cargo check --target ${{ matrix.target }} -F all,no_std,safe
#
alloc:
name: "${{ matrix.target }}"
runs-on: ubuntu-latest
strategy:
matrix:
target: [thumbv7m-none-eabi, aarch64-unknown-none]
steps:
- name: "checkout"
uses: actions/checkout@v4
with:
submodules: true
- name: "Install stable"
uses: dtolnay/rust-toolchain@stable
- name: "rustup target add ${{ matrix.target }}"
run: rustup target add ${{ matrix.target }}
- name: "cargo check alloc -F all,alloc,unsafe"
run: cargo check --target ${{ matrix.target }} -F all,alloc,unsafe
- name: "cargo check alloc -F all,alloc,safe"
run: cargo check --target ${{ matrix.target }} -F all,alloc,safe