We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce30847 + d8876c5 commit b2fd55fCopy full SHA for b2fd55f
.gitlab-ci.yml
@@ -410,6 +410,14 @@ osx-arm64-clang14-release-build:
410
script:
411
- pip install build
412
- !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
421
422
win-x64-msvc2019-release-build:
423
extends: [".build-win-common"]
0 commit comments