Merge pull request #179 from quartiq/dependabot/cargo/bytemuck-1.20.0 #883
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: Continuous Integration | |
on: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
# UTC | |
- cron: '48 4 * * *' | |
env: | |
CARGO_TERM_COLOR: always | |
permissions: write-all | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: thumbv7em-none-eabihf | |
override: true | |
- name: cargo fmt --check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --verbose | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Python Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e py | |
pip install pylint | |
- name: Run Pylint | |
run: | | |
pylint py/thermostat | |
compile: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.continue-on-error }} | |
strategy: | |
matrix: | |
# keep MSRV in sync in ci.yaml and Cargo.toml | |
toolchain: [stable] | |
features: [''] | |
continue-on-error: [false] | |
include: | |
- toolchain: beta | |
features: '' | |
continue-on-error: true | |
- toolchain: nightly | |
features: '' | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
targets: thumbv7em-none-eabihf | |
components: llvm-tools-preview | |
- run: cargo build --release --features "${{ matrix.features }}" | |
- name: Extract Stable Binary Using cargo-binutils | |
if: matrix.toolchain == 'stable' && github.ref == 'refs/heads/main' | |
run: | | |
cargo install cargo-binutils | |
cargo objcopy --release --bin thermostat-eem -- -O binary thermostat-eem.bin | |
- name: Upload Artifacts | |
if: matrix.toolchain == 'stable' && github.ref == 'refs/heads/main' | |
uses: actions/[email protected] | |
with: | |
path: thermostat-eem.bin | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: thumbv7em-none-eabihf | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install Deadlinks | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: | | |
cargo-deadlinks | |
- name: cargo doc | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --no-deps -p miniconf -p idsp -p thermostat-eem | |
- name: cargo deadlinks | |
uses: actions-rs/cargo@v1 | |
with: | |
command: deadlinks | |
# We intentionally ignore fragments, as RTIC may generate fragments for various | |
# auto-generated code. | |
args: --dir target/thumbv7em-none-eabihf/doc --ignore-fragments --check-intra-doc-links |