mirror of
https://github.com/gitui-org/gitui
synced 2026-05-22 16:38:28 +00:00
cargo install locked
This commit is contained in:
parent
9d37e36314
commit
104078f15f
2 changed files with 4 additions and 4 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
run: make build-release
|
||||
|
||||
- name: Test Install
|
||||
run: cargo install --path "." --force
|
||||
run: cargo install --path "." --force --locked
|
||||
|
||||
- name: Binary Size (unix)
|
||||
if: matrix.os != 'windows-latest'
|
||||
|
|
@ -123,7 +123,7 @@ jobs:
|
|||
run: |
|
||||
make test-linux-musl
|
||||
- name: Test Install
|
||||
run: cargo install --path "." --force
|
||||
run: cargo install --path "." --force --locked
|
||||
|
||||
build-linux-arm:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -84,10 +84,10 @@ deny:
|
|||
cargo deny check
|
||||
|
||||
install:
|
||||
cargo install --path "." --offline
|
||||
cargo install --path "." --offline --locked
|
||||
|
||||
install-timing:
|
||||
cargo install --features=timing --path "." --offline
|
||||
cargo install --features=timing --path "." --offline --locked
|
||||
|
||||
licenses:
|
||||
cargo bundle-licenses --format toml --output THIRDPARTY.toml
|
||||
|
|
|
|||
Loading…
Reference in a new issue