Skip to content

Commit ee5cf9a

Browse files
committed
Try handle
1 parent 5665e9d commit ee5cf9a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,23 @@ jobs:
181181
- name: ensure the stable version number is correct
182182
run: src/ci/scripts/verify-stable-version-number.sh
183183

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+
184190
- name: run the build
185191
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
186192
run: src/ci/scripts/run-build-from-ci.sh 2>&1
187193
env:
188194
AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
189195
AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
190196

197+
- name: Windows debug
198+
if: failure()
199+
run: handle -accepteula
200+
191201
# - name: create github artifacts
192202
# run: src/ci/scripts/create-doc-artifacts.sh
193203

0 commit comments

Comments
 (0)