diff --git a/.woodpecker/release.yml b/.woodpecker/release.yml index 1d4fd0dd..6085ef42 100644 --- a/.woodpecker/release.yml +++ b/.woodpecker/release.yml @@ -23,7 +23,7 @@ pipeline: when: event: tag commands: - - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config curl + - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config curl perl - curl -fsSL https://deb.nodesource.com/setup_22.x | bash - - apt-get install -y nodejs - npm ci --legacy-peer-deps @@ -44,7 +44,7 @@ pipeline: when: event: tag commands: - - apt-get update -qq && apt-get install -y -qq mingw-w64 curl nsis + - apt-get update -qq && apt-get install -y -qq mingw-w64 curl nsis perl - curl -fsSL https://deb.nodesource.com/setup_22.x | bash - - apt-get install -y nodejs - npm ci --legacy-peer-deps diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 63fbc673..fb2dd924 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -16,14 +16,14 @@ pipeline: rust-clippy: image: rust:1.88-slim commands: - - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config + - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config perl - rustup component add clippy - cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings rust-tests: image: rust:1.88-slim commands: - - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config + - apt-get update -qq && apt-get install -y -qq libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf pkg-config perl - cargo test --manifest-path src-tauri/Cargo.toml frontend-typecheck: diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 95a117a0..aee6ba38 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -19,7 +19,7 @@ tauri-plugin-shell = "2" tauri-plugin-http = "2" tauri-plugin-cli = "2" tauri-plugin-updater = "2" -rusqlite = { version = "0.31", features = ["bundled-sqlcipher"] } +rusqlite = { version = "0.31", features = ["bundled-sqlcipher-vendored-openssl"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["full"] }