summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2021-07-31 15:23:33 +0100
committerfalkTX <falktx@falktx.com>2021-07-31 15:23:33 +0100
commit8e753dc918b179d180edb6f25fa6d2fd6442d766 (patch)
treefdbb724c2015adb6b8231d7b5fab678c8bafb28e
parentee3eeea91bceb8898ae643a33fe1fc6eb20f1aca (diff)
downloadjack2-8e753dc918b179d180edb6f25fa6d2fd6442d766.tar.gz
CI: Use xvfb-run for wine stuff
Signed-off-by: falkTX <falktx@falktx.com>
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 14c88fdb..168c23d7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -181,12 +181,12 @@ jobs:
wineboot -u
# Download and install innosetup
curl -L https://jrsoftware.org/download.php/is.exe?site=2 -o is.exe
- wine is.exe /allusers /dir=C:\\InnoSeup /nocancel /norestart /verysilent
+ xvfb-run wine is.exe /allusers /dir=C:\\InnoSeup /nocancel /norestart /verysilent
# create installer
ln -sf $(pwd)/destdir windows/inno/win32
pushd windows/inno
echo "#define VERSION \"${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}\"" > version.iss
- wine ${WINEPREFIX}/drive_c/InnoSeup/ISCC.exe win32-mini.iss
+ xvfb-run wine ${WINEPREFIX}/drive_c/InnoSeup/ISCC.exe win32-mini.iss
popd
- uses: actions/upload-artifact@v2
with:
@@ -266,12 +266,12 @@ jobs:
wineboot -u
# Download and install innosetup
curl -L https://jrsoftware.org/download.php/is.exe?site=2 -o is.exe
- wine64 is.exe /allusers /dir=C:\\InnoSeup /nocancel /norestart /verysilent
+ xvfb-run wine64 is.exe /allusers /dir=C:\\InnoSeup /nocancel /norestart /verysilent
# create installer
ln -sf $(pwd)/destdir windows/inno/win64
pushd windows/inno
echo "#define VERSION \"${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}\"" > version.iss
- wine64 ${WINEPREFIX}/drive_c/InnoSeup/ISCC.exe win64-mini.iss
+ xvfb-run wine64 ${WINEPREFIX}/drive_c/InnoSeup/ISCC.exe win64-mini.iss
popd
- uses: actions/upload-artifact@v2
with: