2021-02-14 15:39:51 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-02-14 15:51:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-05-07 21:28:16 +01:00
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
2021-02-14 15:39:51 +00:00
|
|
|
|
2021-05-07 21:28:16 +01:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2021-05-10 22:25:42 +01:00
|
|
|
- name: Run cargo build common
|
|
|
|
run: cargo build -p atuin-common --release
|
|
|
|
|
|
|
|
- name: Run cargo build client
|
|
|
|
run: cargo build -p atuin-client --release
|
|
|
|
|
|
|
|
- name: Run cargo build server
|
|
|
|
run: cargo build -p atuin-server --release
|
|
|
|
|
|
|
|
- name: Run cargo build main
|
2021-04-26 16:54:53 +01:00
|
|
|
run: cargo build --all --release && strip target/release/atuin
|
2021-04-26 14:25:57 +01:00
|
|
|
|
2021-02-14 15:51:14 +00:00
|
|
|
test:
|
2021-02-14 15:39:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-14 15:51:14 +00:00
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
|
|
|
|
2021-05-07 21:28:16 +01:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2021-02-14 15:51:14 +00:00
|
|
|
- name: Run cargo test
|
2022-04-22 21:14:23 +01:00
|
|
|
run: cargo test --all-features --workspace
|
|
|
|
|
|
|
|
- name: Run cargo check (all features)
|
|
|
|
run: cargo check --all-features --workspace
|
|
|
|
|
|
|
|
- name: Run cargo check (no features)
|
|
|
|
run: cargo check --no-default-features --workspace
|
|
|
|
|
|
|
|
- name: Run cargo check (sync)
|
|
|
|
run: cargo check --no-default-features --features sync --workspace
|
|
|
|
|
|
|
|
- name: Run cargo check (server)
|
|
|
|
run: cargo check --no-default-features --features server --workspace
|
2021-02-14 15:51:14 +00:00
|
|
|
|
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install latest rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
2021-02-14 15:56:49 +00:00
|
|
|
components: clippy
|
2021-02-14 15:51:14 +00:00
|
|
|
|
2021-05-07 21:28:16 +01:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2021-02-14 15:55:30 +00:00
|
|
|
- name: Run clippy
|
2021-02-14 18:16:53 +00:00
|
|
|
run: cargo clippy -- -D warnings
|
2021-02-14 15:55:30 +00:00
|
|
|
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install latest rust
|
2021-02-14 15:55:30 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:55:30 +00:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
2021-05-07 21:28:16 +01:00
|
|
|
|
2021-02-14 15:55:30 +00:00
|
|
|
- name: Format
|
|
|
|
run: cargo fmt -- --check
|