Skip to content

Commit 38a9453

Browse files
committed
fix
1 parent fc6b669 commit 38a9453

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ jobs:
117117
with:
118118
path: ./target
119119
key: ${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
120-
- name: Build tests (musl)
120+
- name: Build tests
121121
run: |
122-
powershell ci/windows-builds.ps1
122+
powershell ci/windows-build.ps1
123123
timeout-minutes: 5
124124
- uses: actions/upload-artifact@v2
125125
with:

ci/windows-build.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ function Build-JJSForTarget {
55
param($TargetName)
66

77
New-Item -ItemType directory -Path ./tests/$TargetName
8+
Write-Output "::group::Building for $TargetName"
89
cargo build -p minion-tests -Zunstable-options --out-dir=./tests/$TargetName --target=$TargetName
910

1011
if ($LASTEXITCODE -ne 0) {

0 commit comments

Comments
 (0)