2021-02-24 17:31:28 +08:00
|
|
|
name: Rust
|
|
|
|
|
2021-03-16 17:26:08 +08:00
|
|
|
on:
|
2021-05-11 18:18:10 +08:00
|
|
|
workflow_dispatch:
|
2021-03-16 17:26:08 +08:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
# trying and staging branches are for Bors config
|
|
|
|
branches:
|
|
|
|
- trying
|
|
|
|
- staging
|
2021-02-24 17:31:28 +08:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2021-12-22 19:26:29 +08:00
|
|
|
RUST_BACKTRACE: 1
|
2022-05-04 21:20:45 +08:00
|
|
|
RUSTFLAGS: "-D warnings"
|
2021-02-24 17:31:28 +08:00
|
|
|
|
|
|
|
jobs:
|
2022-12-19 17:46:29 +08:00
|
|
|
test-linux:
|
|
|
|
name: Tests on ubuntu-18.04
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-12-20 01:35:33 +08:00
|
|
|
- name: Install needed dependencies
|
2022-12-19 17:46:29 +08:00
|
|
|
run: |
|
|
|
|
apt-get update && apt-get install -y curl
|
|
|
|
apt-get install build-essential -y
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: Swatinem/rust-cache@v2.2.0
|
|
|
|
- name: Run cargo check without any default features
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --locked --release --no-default-features
|
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --locked --release
|
|
|
|
|
|
|
|
test-others:
|
2021-03-23 02:17:18 +08:00
|
|
|
name: Tests on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-12-19 17:46:29 +08:00
|
|
|
os: [macos-latest, windows-latest]
|
2021-03-23 02:17:18 +08:00
|
|
|
steps:
|
2022-06-29 04:21:41 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-10-07 01:02:29 +08:00
|
|
|
- name: Cache dependencies
|
2022-12-02 01:02:25 +08:00
|
|
|
uses: Swatinem/rust-cache@v2.2.0
|
2021-04-27 18:36:36 +08:00
|
|
|
- name: Run cargo check without any default features
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
2021-04-29 21:19:48 +08:00
|
|
|
command: build
|
|
|
|
args: --locked --release --no-default-features
|
2021-03-23 02:17:18 +08:00
|
|
|
- name: Run cargo test
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --locked --release
|
2021-02-24 17:31:28 +08:00
|
|
|
|
2022-03-17 00:13:49 +08:00
|
|
|
# We run tests in debug also, to make sure that the debug_assertions are hit
|
|
|
|
test-debug:
|
|
|
|
name: Run tests in debug
|
2022-12-19 17:46:29 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:18.04
|
2022-03-17 00:13:49 +08:00
|
|
|
steps:
|
2022-06-29 04:21:41 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-20 01:35:33 +08:00
|
|
|
- name: Install needed dependencies
|
2022-12-19 17:46:29 +08:00
|
|
|
run: |
|
|
|
|
apt-get update && apt-get install -y curl
|
|
|
|
apt-get install build-essential -y
|
2022-03-17 00:13:49 +08:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
2022-10-07 01:02:29 +08:00
|
|
|
- name: Cache dependencies
|
2022-12-02 01:02:25 +08:00
|
|
|
uses: Swatinem/rust-cache@v2.2.0
|
2022-03-17 00:13:49 +08:00
|
|
|
- name: Run tests in debug
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --locked
|
|
|
|
|
2021-03-23 02:17:18 +08:00
|
|
|
clippy:
|
|
|
|
name: Run Clippy
|
2022-12-19 17:46:29 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-03-23 02:17:18 +08:00
|
|
|
steps:
|
2022-06-29 04:21:41 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-23 02:17:18 +08:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: clippy
|
2022-10-07 01:02:29 +08:00
|
|
|
- name: Cache dependencies
|
2022-12-02 01:02:25 +08:00
|
|
|
uses: Swatinem/rust-cache@v2.2.0
|
2021-03-23 02:17:18 +08:00
|
|
|
- name: Run cargo clippy
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: clippy
|
|
|
|
args: --all-targets -- --deny warnings
|
2021-06-29 21:25:18 +08:00
|
|
|
|
|
|
|
fmt:
|
|
|
|
name: Run Rustfmt
|
2022-12-19 17:46:29 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-29 21:25:18 +08:00
|
|
|
steps:
|
2022-06-29 04:21:41 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-29 21:25:18 +08:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2022-12-08 18:51:13 +08:00
|
|
|
toolchain: nightly
|
2021-06-29 21:25:18 +08:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
2022-10-07 01:02:29 +08:00
|
|
|
- name: Cache dependencies
|
2022-12-02 01:02:25 +08:00
|
|
|
uses: Swatinem/rust-cache@v2.2.0
|
2021-06-29 21:25:18 +08:00
|
|
|
- name: Run cargo fmt
|
|
|
|
run: cargo fmt --all -- --check
|