github: more gha, no travis
This commit is contained in:
parent
54f51f9484
commit
624ff73e64
2
.github/bors.toml
vendored
2
.github/bors.toml
vendored
@ -1,3 +1,3 @@
|
|||||||
block_labels = [ "S-blocked" ]
|
block_labels = [ "S-blocked" ]
|
||||||
delete_merged_branches = true
|
delete_merged_branches = true
|
||||||
status = [ "continuous-integration/travis-ci/push" ]
|
status = ["ci"]
|
||||||
|
97
.github/workflows/ci.yml
vendored
97
.github/workflows/ci.yml
vendored
@ -6,20 +6,89 @@ on:
|
|||||||
- trying
|
- trying
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
style:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Install toolchain
|
- uses: actions-rs/toolchain@v1
|
||||||
run: rustup toolchain install nightly
|
with:
|
||||||
- name: Use toolchain
|
profile: minimal
|
||||||
run: rustup override add nightly
|
toolchain: stable
|
||||||
- name: Install target
|
override: true
|
||||||
run: rustup target add thumbv7em-none-eabihf
|
components: rustfmt, clippy
|
||||||
- name: Build release
|
- name: cargo fmt --check
|
||||||
run: cargo build --verbose --release
|
uses: actions-rs/cargo@v1
|
||||||
- name: Build semihosting
|
with:
|
||||||
run: cargo build --verbose --features semihosting
|
command: fmt
|
||||||
- name: Build bkpt
|
args: --all -- --check
|
||||||
run: cargo build --verbose --features bkpt,semihosting
|
- name: cargo clippy
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
|
||||||
|
compile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
target:
|
||||||
|
- thumbv7em-none-eabihf
|
||||||
|
toolchain:
|
||||||
|
- stable
|
||||||
|
- 1.41.0
|
||||||
|
- 1.40.0
|
||||||
|
- 1.38.0
|
||||||
|
- 1.36.0
|
||||||
|
- beta
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install Rust ${{ matrix.toolchain }} with target (${{ matrix.target }})
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: ${{ matrix.toolchain }}
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
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
|
||||||
|
- run: exit 0
|
||||||
|
ci-failure:
|
||||||
|
name: ci
|
||||||
|
if: github.event_name == 'push' && !success()
|
||||||
|
needs:
|
||||||
|
- style
|
||||||
|
- compile
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Mark the job as a failure
|
||||||
|
run: exit 1
|
||||||
|
32
.travis.yml
32
.travis.yml
@ -1,32 +0,0 @@
|
|||||||
language: rust
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
- rust: stable
|
|
||||||
env: FEATURES='' ARGS='--release'
|
|
||||||
- rust: stable
|
|
||||||
env: FEATURES='semihosting'
|
|
||||||
- rust: beta
|
|
||||||
env: FEATURES='' ARGS='--release'
|
|
||||||
allow_failures:
|
|
||||||
- rust: nightly
|
|
||||||
env: FEATURES='' ARGS='--release'
|
|
||||||
|
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- staging
|
|
||||||
- trying
|
|
||||||
- master
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- rustup target add thumbv7em-none-eabihf
|
|
||||||
- rustup component add clippy
|
|
||||||
- rustup component add rustfmt
|
|
||||||
|
|
||||||
script:
|
|
||||||
- "cargo build --target thumbv7em-none-eabihf --features \"$FEATURES\" $ARGS"
|
|
||||||
- cargo clippy
|
|
||||||
- cargo fmt --all -- --check
|
|
||||||
|
|
||||||
notifications:
|
|
||||||
email: false
|
|
Loading…
Reference in New Issue
Block a user