pounder_test/.github/workflows/ci.yml

106 lines
2.4 KiB
YAML
Raw Normal View History

2020-06-16 23:32:28 +08:00
name: Continuous Integration
2019-09-11 23:28:53 +08:00
on:
push:
branches:
- staging
- trying
- master
2020-06-16 22:54:40 +08:00
env:
CARGO_TERM_COLOR: always
2019-09-11 23:28:53 +08:00
jobs:
2020-06-16 22:54:40 +08:00
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
2020-06-16 23:42:38 +08:00
components: rustfmt
2020-06-16 22:54:40 +08:00
- name: cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
2020-06-16 23:42:38 +08:00
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: thumbv7em-none-eabihf
override: true
components: clippy
2020-06-16 22:54:40 +08:00
- name: cargo clippy
uses: actions-rs/cargo@v1
continue-on-error: true
2020-06-16 22:54:40 +08:00
with:
command: clippy
2020-06-16 22:54:40 +08:00
compile:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
steps:
- uses: actions/checkout@v2
- name: Install Rust ${{ matrix.toolchain }}
2020-06-16 22:54:40 +08:00
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
target: thumbv7em-none-eabihf
2020-06-16 22:54:40 +08:00
override: true
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --verbose
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
- name: cargo build release
uses: actions-rs/cargo@v1
with:
command: build
2020-06-16 23:42:38 +08:00
args: --release
2020-06-16 22:54:40 +08:00
- name: cargo build release+semihosting
uses: actions-rs/cargo@v1
with:
command: build
2020-06-16 23:42:38 +08:00
args: --release --features semihosting
2020-06-16 22:54:40 +08:00
2020-06-16 23:42:38 +08:00
# Tell bors about it
# https://github.com/rtic-rs/cortex-m-rtic/blob/8a4f9c6b8ae91bebeea0791680f89375a78bffc6/.github/workflows/build.yml#L566-L603
2020-06-16 22:54:40 +08:00
ci-success:
name: ci
if: github.event_name == 'push' && success()
needs:
- style
2020-06-16 23:42:38 +08:00
- clippy
2020-06-16 22:54:40 +08:00
- compile
runs-on: ubuntu-latest
steps:
- name: Mark the job as a success
2020-06-16 22:59:16 +08:00
run: exit 0
2020-06-16 22:54:40 +08:00
ci-failure:
name: ci
if: github.event_name == 'push' && !success()
needs:
- style
2020-06-16 23:42:38 +08:00
- clippy
2020-06-16 22:54:40 +08:00
- compile
2019-09-11 23:28:53 +08:00
runs-on: ubuntu-latest
steps:
2020-06-16 22:54:40 +08:00
- name: Mark the job as a failure
run: exit 1