Skip to content

Commit

Permalink
Put 22.04 back
Browse files Browse the repository at this point in the history
I removed builds for 22.04 because I didn't want to publish a build that
would be broken for most people. But based on the number of people
saying it works for them, it's clear that's not the case (even if it's
broken for some people). I think I'll put it back while I continue
debugging the problem.
  • Loading branch information
mkasberg committed Jan 1, 2025
1 parent fd5fc44 commit c2a0acc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Build Ghostty
strategy:
matrix:
ubuntu_version: ["24.04", "24.10"]
ubuntu_version: ["22.04", "24.04", "24.10"]
source_only: [true, false]
runs-on: ubuntu-latest
container:
Expand All @@ -34,7 +34,9 @@ jobs:

- name: Set Release Distribution
run: |
if [ "${{ matrix.ubuntu_version }}" = "24.04" ]; then
if [ "${{ matrix.ubuntu_version }}" = "22.04" ]; then
UBUNTU_DIST="jammy"
elif [ "${{ matrix.ubuntu_version }}" = "24.04" ]; then
UBUNTU_DIST="noble"
else
UBUNTU_DIST="oracular"
Expand Down
5 changes: 3 additions & 2 deletions setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

set -e

DEBIAN_FRONTEND="noninteractive"
ZIG_VERSION="0.13.0"

# Install Build Tools
apt-get -qq update && apt-get -qq install -y build-essential debhelper devscripts pandoc libonig-dev libbz2-dev wget
apt-get -qq update && apt-get -qq -y install build-essential debhelper devscripts pandoc libonig-dev libbz2-dev wget

wget -q "https://github.com/jedisct1/minisign/releases/download/0.11/minisign-0.11-linux.tar.gz"
tar -xzf minisign-0.11-linux.tar.gz
Expand All @@ -20,4 +21,4 @@ rm "zig-linux-x86_64-$ZIG_VERSION.tar.xz"
ln -s "/opt/zig-linux-x86_64-$ZIG_VERSION/zig" /usr/local/bin/zig

# Install Ghostty Dependencies
apt-get -qq install -y libgtk-4-dev libadwaita-1-dev
apt-get -qq -y install libgtk-4-dev libadwaita-1-dev

0 comments on commit c2a0acc

Please sign in to comment.