Skip to content

Commit

Permalink
feat(ci): Build on ubuntu 20.04 to support older distros (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron authored Nov 19, 2024
1 parent aa81f3c commit 5ceda8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-gui-release-binaries-cb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
types: [created]

env:
UBUNTU: "ubuntu-22.04"
# We build on an older version to support older glib versions
UBUNTU: "ubuntu-20.04"
MACOS_ARM: "macos-latest"
MACOS_INTEL: "macos-13"
WINDOWS: "windows-latest"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-gui-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
publish-tauri:
# Do not publish preview releases to Github.
# Building takes too long for preview releases.
if: ${{ !contains(github.ref_name, 'preview') }}
# if: ${{ !contains(github.ref_name, 'preview') }} Temporarily disabled
permissions:
contents: write
strategy:
Expand All @@ -20,7 +20,7 @@ jobs:
args: "--target aarch64-apple-darwin"
- platform: "macos-13" # for Intel based macs.
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-24.04"
- platform: "ubuntu-20.04" # We build on an older version to support older glib versions
args: ""
- platform: "windows-latest"
args: ""
Expand Down

0 comments on commit 5ceda8f

Please sign in to comment.