File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -117,23 +117,25 @@ jobs:
117
117
with :
118
118
path : ./target
119
119
key : ${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
120
- - name : Build tests (musl)
120
+ - name : Build tests
121
121
run : |
122
- powershell ci/windows-builds .ps1
122
+ powershell ci/windows-build .ps1
123
123
timeout-minutes : 5
124
124
- uses : actions/upload-artifact@v2
125
125
with :
126
126
path : ./tests
127
127
name : tests-windows
128
128
retention-days : 2
129
129
130
- tests-windows :
130
+ tests-windows-run :
131
131
strategy :
132
132
matrix :
133
133
rust-target :
134
134
- ' x86_64-pc-windows-gnu'
135
135
- ' x86_64-pc-windows-msvc'
136
136
runs-on : windows-latest
137
+ needs :
138
+ - tests-windows-build
137
139
steps :
138
140
- uses : actions/checkout@v2
139
141
- uses : actions/download-artifact@v1
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ function Build-JJSForTarget {
5
5
param ($TargetName )
6
6
7
7
New-Item - ItemType directory - Path ./ tests/ $TargetName
8
+ Write-Output " ::group::Building for $TargetName "
8
9
cargo build - p minion- tests - Zunstable- options -- out-dir = ./ tests/ $TargetName -- target= $TargetName
9
10
10
11
if ($LASTEXITCODE -ne 0 ) {
You can’t perform that action at this time.
0 commit comments