fix(ci): Install mold linker and rustfmt in deploy workflow
The Deploy workflow on main failed because .cargo/config.toml requires the mold linker, but deploy.yml only installed lld. The earlier fix commit only updated push.yml, missing deploy.yml.
This commit is contained in:
parent
46b0cb67ef
commit
616876e73f
1 changed files with 4 additions and 1 deletions
5
.github/workflows/deploy.yml
vendored
5
.github/workflows/deploy.yml
vendored
|
|
@ -32,7 +32,10 @@ jobs:
|
|||
cargo-${{ runner.os }}-
|
||||
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get update && sudo apt-get install -y clang lld libssl-dev pkg-config
|
||||
run: sudo apt-get update && sudo apt-get install -y clang lld mold libssl-dev pkg-config
|
||||
|
||||
- name: Ensure Rust components
|
||||
run: rustup component add rustfmt clippy
|
||||
|
||||
- name: Check formatting
|
||||
run: cargo fmt -- --check
|
||||
|
|
|
|||
Loading…
Reference in a new issue