mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-06-05 03:14:14 +00:00
ci: cleanup
This commit is contained in:
@@ -82,6 +82,9 @@ pub fn initShared(
|
||||
.omit_frame_pointer = deps.config.strip,
|
||||
.unwind_tables = if (deps.config.strip) .none else .sync,
|
||||
}),
|
||||
|
||||
// Fails on self-hosted x86_64
|
||||
.use_llvm = true,
|
||||
});
|
||||
_ = try deps.add(lib);
|
||||
|
||||
|
||||
@@ -29,10 +29,10 @@ COPY ./build.zig /src
|
||||
# Install zig
|
||||
# https://ziglang.org/download/
|
||||
|
||||
RUN export ZIG_VERSION=$(sed -n -e 's/^.*requireZig("\(.*\)").*$/\1/p' build.zig) && curl -L -o /tmp/zig.tar.xz "https://ziglang.org/download/$ZIG_VERSION/zig-linux-$(uname -m)-$ZIG_VERSION.tar.xz" && \
|
||||
RUN export ZIG_VERSION=$(sed -n -e 's/^.*requireZig("\(.*\)").*$/\1/p' build.zig) && curl -L -o /tmp/zig.tar.xz "https://ziglang.org/download/$ZIG_VERSION/zig-$(uname -m)-linux-$ZIG_VERSION.tar.xz" && \
|
||||
tar -xf /tmp/zig.tar.xz -C /opt && \
|
||||
rm /tmp/zig.tar.xz && \
|
||||
ln -s "/opt/zig-linux-$(uname -m)-$ZIG_VERSION/zig" /usr/local/bin/zig
|
||||
ln -s "/opt/zig-$(uname -m)-linux-$ZIG_VERSION/zig" /usr/local/bin/zig
|
||||
|
||||
COPY . /src
|
||||
|
||||
|
||||
Reference in New Issue
Block a user