We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5a611 commit e433034Copy full SHA for e433034
ci/cirrus.sh
@@ -34,6 +34,8 @@ print_environment
34
# This speeds up jobs with many invocations of wine (e.g., ./configure with MSVC) tremendously.
35
case "$WRAPPER_CMD" in
36
*wine*)
37
+ # Make sure to shutdown wineserver whenever we exit.
38
+ trap "wineserver -k || true" EXIT INT HUP
39
# This is apparently only reliable when we run a dummy command such as "hh.exe" afterwards.
40
wineserver -p && wine hh.exe
41
;;
@@ -111,9 +113,6 @@ then
111
113
make precomp
112
114
fi
115
-# Shutdown wineserver again
-wineserver -k || true
116
-
117
# Check that no repo files have been modified by the build.
118
# (This fails for example if the precomp files need to be updated in the repo.)
119
git diff --exit-code
0 commit comments