File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -181,13 +181,23 @@ jobs:
181
181
- name : ensure the stable version number is correct
182
182
run : src/ci/scripts/verify-stable-version-number.sh
183
183
184
+ - name : Download Handle
185
+ run : |
186
+ curl -O https://download.sysinternals.com/files/Handle.zip
187
+ unzip -d handle Handle.zip
188
+ echo "$PWD/handle" >> $GITHUB_PATH
189
+
184
190
- name : run the build
185
191
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
186
192
run : src/ci/scripts/run-build-from-ci.sh 2>&1
187
193
env :
188
194
AWS_ACCESS_KEY_ID : ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
189
195
AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
190
196
197
+ - name : Windows debug
198
+ if : failure()
199
+ run : handle -accepteula
200
+
191
201
# - name: create github artifacts
192
202
# run: src/ci/scripts/create-doc-artifacts.sh
193
203
You can’t perform that action at this time.
0 commit comments