Skip to content

Commit 98eac64

Browse files
authored
Merge pull request #46 from psadi/feature/nightly_fix
fix: add missing deps for nightly builds
2 parents d14b59c + e9e16ea commit 98eac64

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Build Ghostty AppImage
5050
run: |
5151
if [ "${{ github.event_name }}" == "schedule" ]; then
52-
sed -i 's/GHOSTTY_VERSION="$(cat VERSION)"/GHOSTTY_VERSION="tip"/' build.sh
52+
echo "tip" > VERSION
5353
fi
5454
./build.sh
5555

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This repository provides build scripts to create a Universal AppImage for [Ghost
2929

3030
1. Ghostty AppImages are available for both x86_64 and aarch64 systems.
3131
1. Stable builds are based on upstream releases, with minor fixes and patches released as version+1 tags.
32-
1. Daily nightly builds, based on the upstream tip releases, are available as pre-releases in the [releases](https://github.com/psadi/ghostty-appimage/releases/tag/tip) section.
32+
1. Daily nightly builds, based on the upstream [tip releases](https://github.com/ghostty-org/ghostty/releases/tag/tip), are available as pre-releases in the [releases](https://github.com/psadi/ghostty-appimage/releases/tag/tip) section.
3333

3434
## ⚙️ Installation
3535

build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ rm "ghostty-${GHOSTTY_VERSION}.tar.gz"
4949

5050
cd "${TMP_DIR}/${BUILD_DIR}"
5151

52-
# Fetch Zig Cache
53-
# if [ -f './nix/build-support/fetch-zig-cache.sh' ]; then
54-
# ZIG_GLOBAL_CACHE_DIR=/tmp/offline-cache ./nix/build-support/fetch-zig-cache.sh
55-
# BUILD_ARGS="${BUILD_ARGS} --system /tmp/offline-cache/p"
56-
# fi
52+
#Fetch Zig Cache
53+
if [ -f './nix/build-support/fetch-zig-cache.sh' ]; then
54+
ZIG_GLOBAL_CACHE_DIR=/tmp/offline-cache ./nix/build-support/fetch-zig-cache.sh
55+
BUILD_ARGS="${BUILD_ARGS} --system /tmp/offline-cache/p"
56+
fi
5757

5858
# Build Ghostty with zig
5959
echo " BUILD_ARGS: '${BUILD_ARGS}"

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ case "${ARCH}" in
3636
esac
3737

3838
# Update & install OS base dependencies
39-
buildDeps="base-devel freetype2 oniguruma wget mesa file zsync appstream xorg-server-xvfb patchelf binutils strace git"
39+
buildDeps="base-devel freetype2 oniguruma wget mesa file zsync appstream xorg-server-xvfb patchelf binutils strace git blueprint-compiler"
4040
ghosttyDeps="gtk4 libadwaita"
4141
pacman -Syuq --needed --noconfirm --noprogressbar ${buildDeps} ${ghosttyDeps}
4242
pacman -Scc --noconfirm

0 commit comments

Comments
 (0)