From 8abdd6dd3bfcd2bdc2bbbda5a88d94154b24a377 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Sat, 5 Sep 2020 04:11:03 +0300 Subject: [PATCH] [CI] Use WINE & recedit for Windows builds --- .github/workflows/dev-desktop-builds.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/dev-desktop-builds.yml b/.github/workflows/dev-desktop-builds.yml index 07e749c5e..328ed28d5 100644 --- a/.github/workflows/dev-desktop-builds.yml +++ b/.github/workflows/dev-desktop-builds.yml @@ -21,6 +21,16 @@ jobs: container: image: docker://barichello/godot-ci:3.2.2 steps: + - name: Setup WINE and rcedit 🍷 + run: | + dpkg --add-architecture i386 && apt-get update && apt-get install -y wine-stable && apt-get install -y wine32 + chown root:root -R ~ + wget https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe + mkdir -v -p ~/.local/share/rcedit + mv rcedit-x64.exe ~/.local/share/rcedit + godot -q + echo 'export/windows/wine = "/usr/bin/wine"' >> ~/.config/godot/editor_settings-3.tres + echo 'export/windows/rcedit = "/github/home/.local/share/rcedit/rcedit-x64.exe"' >> ~/.config/godot/editor_settings-3.tres - name: Checkout 🛎️ uses: actions/checkout@v1 with: