feat: build individual crates (#109)
This commit is contained in:
parent
fe45787474
commit
fa5c94de65
1 changed files with 10 additions and 1 deletions
11
.github/workflows/rust.yml
vendored
11
.github/workflows/rust.yml
vendored
|
@ -30,7 +30,16 @@ jobs:
|
||||||
target
|
target
|
||||||
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: Run cargo build
|
- 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
|
||||||
run: cargo build --all --release && strip target/release/atuin
|
run: cargo build --all --release && strip target/release/atuin
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
|
Loading…
Reference in a new issue