Skip to content

Commit b2fd55f

Browse files
committed
Merge branch 'amerry/unit-test-file' into 'master'
Wait for pod5_unit_tests to be deleted on Windows See merge request minknow/pod5-file-format!371
2 parents ce30847 + d8876c5 commit b2fd55f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.gitlab-ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,14 @@ osx-arm64-clang14-release-build:
410410
script:
411411
- pip install build
412412
- !reference [".conan-build-and-test"]
413+
after_script:
414+
# HACK: for some reason, pod5_unit_tests.exe is sticking around; deleting it works, but it
415+
# doesn't go away immediately (as though something had it open with FILE_SHARE_DELETE, although
416+
# the Handle utility from SysInternals couldn't find anything).
417+
- rm build/Release/bin/pod5_unit_tests.exe
418+
- date
419+
- while [[ -e build/Release/bin/pod5_unit_tests.exe ]]; do sleep 1; done
420+
- date
413421

414422
win-x64-msvc2019-release-build:
415423
extends: [".build-win-common"]

0 commit comments

Comments
 (0)