We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6b669 commit 38a9453Copy full SHA for 38a9453
.github/workflows/rust.yml
@@ -117,9 +117,9 @@ jobs:
117
with:
118
path: ./target
119
key: ${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
120
- - name: Build tests (musl)
+ - name: Build tests
121
run: |
122
- powershell ci/windows-builds.ps1
+ powershell ci/windows-build.ps1
123
timeout-minutes: 5
124
- uses: actions/upload-artifact@v2
125
ci/windows-build.ps1
@@ -5,6 +5,7 @@ function Build-JJSForTarget {
5
param($TargetName)
6
7
New-Item -ItemType directory -Path ./tests/$TargetName
8
+ Write-Output "::group::Building for $TargetName"
9
cargo build -p minion-tests -Zunstable-options --out-dir=./tests/$TargetName --target=$TargetName
10
11
if ($LASTEXITCODE -ne 0) {
0 commit comments