pounder_test/.github/workflows/ci.yml

92 lines
2.0 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
target: thumbv7em-none-eabihf
2020-06-16 22:54:40 +08:00
override: true
components: rustfmt, clippy
- name: cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- 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
args: --verbose
- name: cargo build release
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --release
- name: cargo build release+semihosting
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --release --features semihosting
ci-success:
name: ci
if: github.event_name == 'push' && success()
needs:
- style
- 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
- 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