From 43c8b146a07f4e82ad79b7938fa348f0a5e7acd8 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Mon, 6 Jan 2020 01:24:45 -0500 Subject: [PATCH] CI: Attempt wine lockup fix --- .ci/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/build.sh b/.ci/build.sh index 3bf4009..d5ac311 100755 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -95,6 +95,9 @@ strip *.exe ls -lah *.exe file *.exe +# running the test script sometimes locks up wine, I think due to races on creating ~/.wine, so do that first... +$wine ./pegh-windows-amd64-libsodium.exe -h || true + # now test windows binaries against the static ones with wine # no binfmt here where executing .exe *just works*, so do it hacky way :'( export TEST_BINS="./pegh.static.openssl ./pegh.static.libsodium-openssl ./pegh.static.libsodium"