-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
81 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,99 +1,46 @@ | ||
name: 'CI' | ||
name: CI | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main"] | ||
env: | ||
RUST_BACKTRACE: 1 | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: full | ||
CI: true | ||
|
||
jobs: | ||
ci-pass: | ||
name: CI is green | ||
build: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- test-linux | ||
- test-linux-aarch64 | ||
- test-macos | ||
- test-windows | ||
- lint | ||
steps: | ||
- run: exit 0 | ||
|
||
test-linux: | ||
runs-on: [self-hosted, X64] | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
rust: [nightly] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
# - uses: Swatinem/rust-cache@v1 | ||
- name: Run tests | ||
run: | | ||
cargo check | ||
cargo test | ||
cargo build | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
test-linux-aarch64: | ||
runs-on: [self-hosted, arm] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- name: Set up Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
components: rustfmt | ||
# - uses: Swatinem/rust-cache@v1 | ||
- name: Run tests | ||
run: | | ||
cargo check | ||
cargo test | ||
cargo build | ||
profile: ${{ matrix.rust }} | ||
override: true | ||
toolchain: ${{ matrix.rust }} | ||
|
||
test-macos: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
- uses: Swatinem/rust-cache@v1 | ||
- name: Run tests | ||
- name: Install dependencies | ||
run: | | ||
cargo check | ||
cargo test | ||
cargo build | ||
rustup component add rustfmt | ||
test-windows: | ||
runs-on: windows-latest | ||
- name: Format check | ||
run: cargo fmt -- --check | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
- uses: Swatinem/rust-cache@v1 | ||
- name: Run tests | ||
run: | | ||
cargo check | ||
cargo test | ||
cargo build | ||
- name: Clippy check | ||
run: cargo clippy -- -D warnings | ||
|
||
lint: | ||
runs-on: [self-hosted, X64] | ||
- name: Build | ||
run: cargo build --verbose | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt, clippy | ||
# - uses: Swatinem/rust-cache@v1 | ||
- uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Format check | ||
run: | | ||
cargo fmt -- --check | ||
- name: Test | ||
run: cargo test --verbose |