diff --git a/.github/workflows/dep_rust.yml b/.github/workflows/dep_rust.yml index ec7b6c5c..2f54f2e5 100644 --- a/.github/workflows/dep_rust.yml +++ b/.github/workflows/dep_rust.yml @@ -60,6 +60,11 @@ jobs: cargo fetch --manifest-path src/tests/rust_guests/simpleguest/Cargo.toml --locked cargo fetch --manifest-path src/tests/rust_guests/callbackguest/Cargo.toml --locked + - name: Get gh action service name + if: ${{ (runner.os == 'Windows' )}} + run: (Get-Service actions.runner.*) | Foreach { $_.Name, $_.UserName, $_.ServiceType } + shell: pwsh + - name: Build and move Rust guests run: just build-and-move-rust-guests diff --git a/Justfile b/Justfile index 9ff46a5b..56045d0b 100644 --- a/Justfile +++ b/Justfile @@ -1,7 +1,7 @@ import 'c.just' alias build-rust-debug := build-rust -set windows-shell := ["pwsh.exe", "-NoLogo", "-Command", "$ErrorActionPreference = 'Stop';"] +set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"] set dotenv-load := true set-trace-env-vars := if os() == "windows" { "$env:RUST_LOG='none,hyperlight-host=info';" } else { "RUST_LOG=none,hyperlight-host=info" }