Skip to content

Commit

Permalink
Merge pull request #645 from hermit-os/uhyve-0.4.0
Browse files Browse the repository at this point in the history
ci: remove `--verbose` from Uhyve call
  • Loading branch information
mkroening authored Nov 26, 2024
2 parents e22c355 + 7e646bc commit 41128d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- run: echo "$CARGO_HOME/bin" >> "$GITHUB_PATH"
- uses: mkroening/rust-toolchain-toml@main
- name: Download loader
run: gh release download --repo hermit-os/loader --pattern hermit-loader-x86_64
Expand All @@ -82,7 +84,7 @@ jobs:
lscpu
kvm-ok
- name: Test debug version (Uhyve)
run: uhyve --verbose -c 1 target/x86_64-unknown-hermit/debug/rusty_demo
run: uhyve -c 1 target/x86_64-unknown-hermit/debug/rusty_demo
env:
RUST_LOG: debug
- name: Test debug profile (Qemu)
Expand All @@ -94,7 +96,7 @@ jobs:
- name: Build release profile
run: cargo build -Zbuild-std=std,panic_abort --target x86_64-unknown-hermit --package rusty_demo --release
- name: Test release version (Uhyve)
run: uhyve --verbose -c 1 target/x86_64-unknown-hermit/release/rusty_demo
run: uhyve -c 1 target/x86_64-unknown-hermit/release/rusty_demo
env:
RUST_LOG: debug
- name: Test release profile (Qemu)
Expand Down

0 comments on commit 41128d4

Please sign in to comment.