Skip to content

Commit

Permalink
Remove ubuntu arm, Github doesn't have runners for it yet.
Browse files Browse the repository at this point in the history
Enable splash screen. Looks good on linux.

Enable onefile. Faster on linux than Windows.
  • Loading branch information
scosman committed Nov 21, 2024
1 parent afaf665 commit 8801897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build_desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ jobs:
- os: windows-latest
- os: macos-latest # arm64
- os: macos-13 # x86_64
- os: ubuntu-latest
arch: x64
- os: ubuntu-latest
arch: arm64
- os: ubuntu-latest # x86_64 (no arm64 support on GH Actions yet)

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions app/desktop/build_desktop_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ elif [[ "$(uname)" =~ ^MINGW64_NT-10.0 ]] || [[ "$(uname)" =~ ^MSYS_NT-10.0 ]];
PLATFORM_OPTS="--windowed --splash=../win_splash.png"
elif [ "$(uname)" == "Linux" ]; then
echo "Building Linux App"
cp desktop/win_taskbar.png desktop/build/taskbar.png
cp desktop/win_icon.png desktop/build/icon.png
PLATFORM_OPTS="--windowed --onefile"
cp desktop/mac_taskbar.png desktop/build/taskbar.png
cp desktop/mac_icon.png desktop/build/icon.png
PLATFORM_OPTS="--windowed --onefile --splash=../win_splash.png"
else
echo "Unsupported operating system: $(uname)"
exit 1
Expand Down

0 comments on commit 8801897

Please sign in to comment.