Merge pull request #12 from rp-rs/add_workflows

Add github workflow.
This commit is contained in:
Jonathan 'theJPster' Pallant 2021-12-06 07:28:24 +00:00 committed by GitHub
commit 9d3b0cef3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 70 additions and 4 deletions

66
.github/workflows/ci_checks.yml vendored Normal file
View File

@ -0,0 +1,66 @@
name: CI Checks
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
building:
name: Building
continue-on-error: ${{ matrix.experimental || false }}
strategy:
matrix:
# All generated code should be running on stable now
rust: [nightly, stable]
include:
# Nightly is only for reference and allowed to fail
- rust: nightly
experimental: true
os:
# Check compilation works on common OSes
# (i.e. no path issues)
- ubuntu-latest
- macOS-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- run: cargo install flip-link
- run: rustup target install --toolchain=${{ matrix.rust }} thumbv6m-none-eabi
- run: cargo build --all
- run: cargo build --all --release
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
- run: rustup target install thumbv6m-none-eabi
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
- run: rustup target install thumbv6m-none-eabi
- run: cargo fmt -- --check

View File

@ -26,8 +26,6 @@ pico = { git = "https://github.com/rp-rs/rp-hal", branch="main"}
# rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", branch="main", features=["rt"] } # rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", branch="main", features=["rt"] }
# rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", branch="main" } # rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", branch="main" }
# cargo build/run # cargo build/run
[profile.dev] [profile.dev]
codegen-units = 1 codegen-units = 1

View File

@ -65,3 +65,5 @@ fn main() -> ! {
delay.delay_ms(500); delay.delay_ms(500);
} }
} }
// End of file