A man is not dead while his name is still spoken #2310
Workflow file for this run
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
name: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run cargo build common | |
run: cargo build -p atuin-common --locked --release | |
- name: Run cargo build client | |
run: cargo build -p atuin-client --locked --release | |
- name: Run cargo build server | |
run: cargo build -p atuin-server --locked --release | |
- name: Run cargo build main | |
run: cargo build --all --locked --release && strip target/release/atuin | |
unit-test: | |
#runs-on: [self-hosted, ARM64, macOS] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
# - uses: actions/cache@v3 | |
# with: | |
# path: | | |
# ~/.cargo/registry | |
# ~/.cargo/git | |
# target | |
# key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run cargo test | |
run: cargo test --lib --bins | |
- 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 | |
- name: Run cargo check (client only) | |
run: cargo check --no-default-features --features client --workspace | |
integration-test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: atuin | |
POSTGRES_PASSWORD: pass | |
POSTGRES_DB: atuin | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run cargo test | |
run: cargo test --test '*' | |
env: | |
ATUIN_DB_URI: postgres://atuin:pass@localhost:5432/atuin | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: clippy | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run clippy | |
run: cargo clippy -- -D warnings | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: rustfmt | |
- name: Format | |
run: cargo fmt -- --check |