-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-organise Github Actions workflows.
Now there's one workflow per package, with a job for each thing (formatting, clippy, building, testing, etc).
- Loading branch information
Showing
6 changed files
with
276 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
on: [push, pull_request] | ||
name: Build and Test on-target-tests | ||
env: | ||
PACKAGE: on-target-tests | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Build | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
udeps: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: nightly-2024-01-30 | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Install cargo-udeps | ||
run: | | ||
curl -sSL https://github.com/est31/cargo-udeps/releases/download/v0.1.45/cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - --strip-components=2 -C ~/.cargo/bin ./cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu/cargo-udeps | ||
- name: Run cargo-udeps | ||
run: cd ${PACKAGE} && cargo hack udeps --optional-deps --each-feature | ||
msrv: | ||
name: Verify build on MSRV | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.77 | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Build on-target-tests (on MSRV) | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
fmt: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt | ||
- name: Check format | ||
run: cd ${PACKAGE} && cargo fmt -- --check | ||
clippy: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
target: thumbv6m-none-eabi | ||
components: clippy | ||
- name: Run cargo clippy | ||
run: cd ${PACKAGE} && cargo clippy |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
on: [push, pull_request] | ||
name: Build and Test rp2040-hal-examples | ||
env: | ||
PACKAGE: rp2040-hal-examples | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Build | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Test | ||
run: cd ${PACKAGE} && cargo hack test --optional-deps --each-feature --tests | ||
- name: Test docs | ||
run: cd ${PACKAGE} && cargo hack test --optional-deps --each-feature --doc | ||
udeps: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: nightly-2024-01-30 | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Install cargo-udeps | ||
run: | | ||
curl -sSL https://github.com/est31/cargo-udeps/releases/download/v0.1.45/cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - --strip-components=2 -C ~/.cargo/bin ./cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu/cargo-udeps | ||
- name: Run cargo-udeps | ||
run: cd ${PACKAGE} && cargo hack udeps --optional-deps --each-feature | ||
msrv: | ||
name: Verify build on MSRV | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.77 | ||
target: thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Use older version of regex | ||
run: cd ${PACKAGE} && cargo update -p regex --precise 1.9.3 | ||
- name: Build on MSRV | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
fmt: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt | ||
- name: Check format | ||
run: cd ${PACKAGE} && cargo fmt -- --check | ||
clippy: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
target: thumbv6m-none-eabi | ||
components: clippy | ||
- name: Run cargo clippy | ||
run: cd ${PACKAGE} && cargo clippy |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
on: [push, pull_request] | ||
name: Build and Test rp-binary-info | ||
env: | ||
PACKAGE: rp-binary-info | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Build | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Test | ||
run: cd ${PACKAGE} && cargo hack test --optional-deps --each-feature --tests | ||
- name: Test docs | ||
run: cd ${PACKAGE} && cargo hack test --optional-deps --each-feature --doc | ||
udeps: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: nightly-2024-01-30 | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Install cargo-udeps | ||
run: | | ||
curl -sSL https://github.com/est31/cargo-udeps/releases/download/v0.1.45/cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - --strip-components=2 -C ~/.cargo/bin ./cargo-udeps-v0.1.45-x86_64-unknown-linux-gnu/cargo-udeps | ||
- name: Run cargo-udeps | ||
run: cd ${PACKAGE} && cargo hack udeps --optional-deps --each-feature | ||
msrv: | ||
name: Verify build on MSRV | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.77 | ||
- name: Install cargo-hack | ||
run: | | ||
curl -sSL https://github.com/taiki-e/cargo-hack/releases/download/v0.6.17/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xvzf - -C ~/.cargo/bin | ||
- name: Build on MSRV | ||
run: cd ${PACKAGE} && cargo hack build --optional-deps --each-feature | ||
fmt: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: rustfmt | ||
- name: Check format | ||
run: cd ${PACKAGE} && cargo fmt -- --check | ||
clippy: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: clippy | ||
- name: Run cargo clippy | ||
run: cd ${PACKAGE} && cargo clippy |
Oops, something went wrong.