Skip to content

Commit

Permalink
[ISSUE #11]Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsm committed Dec 30, 2023
1 parent 42ed371 commit c6d05b9
Showing 1 changed file with 28 additions and 81 deletions.
109 changes: 28 additions & 81 deletions .github/workflows/ci.yaml
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

0 comments on commit c6d05b9

Please sign in to comment.