Compare commits

...

3 Commits

Author SHA1 Message Date
88911c5434 fix(ci): remove rustflags
All checks were successful
Test Agent / test (push) Successful in 1m3s
2025-08-15 13:52:02 +09:00
c76fefe56b fix: ci test
Some checks failed
Test Agent / test (push) Failing after 1m0s
2025-08-15 13:49:07 +09:00
32a9ba5b78 fix(ci): add itself to ci change condition
Some checks failed
Test Agent / test (push) Failing after 1m0s
2025-08-15 13:44:20 +09:00
2 changed files with 6 additions and 5 deletions

View File

@@ -6,11 +6,13 @@ on:
- main
paths:
- "agent/**"
- ".github/**"
pull_request:
branches:
- main
paths:
- "agent/**"
- ".github/**"
jobs:
test:
@@ -37,8 +39,7 @@ jobs:
restore-keys: |
${{ runner.os }}-cargo-build-
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test
env:
RUSTFLAGS: ""

View File

@@ -11,5 +11,5 @@ pub fn run_qemu(config: &QemuConfig) {
.map(|s| s.to_string())
.collect();
let handle = Command::new(&config.executable).args(&args).spawn();
let _handle = Command::new(&config.executable).args(&args).spawn();
}