fix(ci): add libsodium-dev to test workflow dependencies
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m40s
Test / frontend-typecheck (pull_request) Successful in 1m48s
PR Review Automation / review (pull_request) Successful in 3m39s
Test / rust-fmt-check (pull_request) Successful in 12m13s
Test / rust-clippy (pull_request) Successful in 13m59s
Test / rust-tests (pull_request) Successful in 16m4s
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m40s
Test / frontend-typecheck (pull_request) Successful in 1m48s
PR Review Automation / review (pull_request) Successful in 3m39s
Test / rust-fmt-check (pull_request) Successful in 12m13s
Test / rust-clippy (pull_request) Successful in 13m59s
Test / rust-tests (pull_request) Successful in 16m4s
The test.yml workflow's rust-fmt-check, rust-clippy, and rust-tests jobs were missing libsodium-dev package installation. With the new use-pkg-config feature enabled, pkg-config must be able to find libsodium system libraries. This resolves "libsodium not found via pkg-config" failures in the test pipeline. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c0f8b314ca
commit
d86da0033d
@ -45,6 +45,7 @@ jobs:
|
||||
libayatana-appindicator3-dev \
|
||||
librsvg2-dev \
|
||||
libdbus-1-dev \
|
||||
libsodium-dev \
|
||||
pkg-config
|
||||
- name: Install Rust components
|
||||
run: rustup component add rustfmt
|
||||
@ -96,6 +97,7 @@ jobs:
|
||||
libayatana-appindicator3-dev \
|
||||
librsvg2-dev \
|
||||
libdbus-1-dev \
|
||||
libsodium-dev \
|
||||
pkg-config
|
||||
- name: Install clippy
|
||||
run: rustup component add clippy
|
||||
@ -133,6 +135,7 @@ jobs:
|
||||
libayatana-appindicator3-dev \
|
||||
librsvg2-dev \
|
||||
libdbus-1-dev \
|
||||
libsodium-dev \
|
||||
pkg-config
|
||||
- run: cargo test --manifest-path src-tauri/Cargo.toml -- --test-threads=1
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user