-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create automatic builds for Windows and Linux (#640)
- Loading branch information
1 parent
be13f22
commit 2962d42
Showing
2 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
env: | ||
GODOT_VERSION: 4.2.2-rc2 | ||
GODOT_VERSION_DOT: 4.2.2.rc2 | ||
EXPORT_NAME: GodSVG | ||
|
||
jobs: | ||
export: | ||
name: Export GodSVG | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Godot and folders | ||
run: | | ||
mkdir -v -p ~/build/windows-64bit ~/build/linux-64bit ~/.local/share/godot/export_templates | ||
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_export_templates.tpz | ||
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_linux.x86_64.zip | ||
unzip Godot_v${GODOT_VERSION}_linux.x86_64.zip -d ~ | ||
unzip Godot_v${GODOT_VERSION}_export_templates.tpz -d ~ | ||
mv ~/templates/ ~/.local/share/godot/export_templates/${GODOT_VERSION_DOT} | ||
~/Godot_v${GODOT_VERSION}_linux.x86_64 --headless --quit | ||
- name: Setup WINE and rcedit for Windows export | ||
run: | | ||
dpkg --add-architecture i386 && apt-get update && apt-get install -y wine-stable && apt-get install -y wine32 | ||
wget -q 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 | ||
echo 'export/windows/wine = "/usr/bin/wine"' >> ~/.config/godot/editor_settings-4.tres | ||
echo 'export/windows/rcedit = "/github/home/.local/share/rcedit/rcedit-x64.exe"' >> ~/.config/godot/editor_settings-4.tres | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: Build Windows executable | ||
run: | | ||
~/Godot_v${GODOT_VERSION}_linux.x86_64 --headless -v --export-release "Windows Desktop" ~/build/windows-64bit/$EXPORT_NAME.exe | ||
- name: Build Linux executable | ||
run: | | ||
~/Godot_v${GODOT_VERSION}_linux.x86_64 --headless -v --export-release "Linux/X11" ~/build/linux-64bit/$EXPORT_NAME.x86_64 | ||
chmod +x ~/build/linux-64bit/$EXPORT_NAME.x86_64 | ||
cd ~/build | ||
tar zcvf linux-64bit.tar.gz linux-64bit | ||
- name: Upload Windows Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows-64bit | ||
path: ~/build/windows-64bit/ | ||
retention-days: 14 | ||
- name: Upload Linux Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux-64bit | ||
path: ~/build/linux-64bit.tar.gz | ||
retention-days: 14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters