Skip to content

Commit b4814a4

Browse files
rithythulclaude
andcommitted
Fix CI build errors
- Fix test compilation: change paru::run to koompi::run in tests - Downgrade alpm dependencies to compatible versions (4.0.2) - Resolves build failures in GitHub Actions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 24987b0 commit b4814a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ rust-version = "1.80"
1515

1616

1717
[dependencies]
18-
alpm = "4.0.3"
19-
alpm-utils = "4.0.1"
20-
aur-depends = "4.0.3"
18+
alpm = "4.0.2"
19+
alpm-utils = "4.0.0"
20+
aur-depends = "4.0.2"
2121
aur-fetch = "0.11.3"
2222
cini = "1.0.0"
2323
pacmanconf = "3.0.0"

tests/common/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ async fn run(run_args: &[&str], repo: bool) -> Result<(TempDir, i32)> {
177177
}
178178

179179
args.extend(run_args);
180-
let ret = paru::run(&args).await;
180+
let ret = koompi::run(&args).await;
181181

182182
for pkg in std::fs::read_dir(dir.join("cache/pkg"))? {
183183
let path = pkg?.path();

0 commit comments

Comments
 (0)