diff options
| author | Mitchell Hashimoto <m@mitchellh.com> | 2025-07-12 07:03:08 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-12 07:03:08 -0700 |
| commit | b5000dcd94b75d745dacbcd3d4bfaf181d288671 (patch) | |
| tree | 98317789b475806d2817a656e31b9cd1b08df868 | |
| parent | e67a62453d8e75e82b581a340e70896f722a7f0f (diff) | |
| parent | 658567bbbdfdd51ebbfc42bc76d645afdb67e798 (diff) | |
fix webdata build, run it in CI (#7921)
This fixes our build for `-Demit-webdata`. Turns out we weren't running
this in CI so this adds that there.
| -rw-r--r-- | .github/workflows/test.yml | 2 | ||||
| -rw-r--r-- | src/build/webgen/main_commands.zig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b632ae8f4..fc8adb25e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -527,7 +527,7 @@ jobs: run: nix develop -c zig build -Dapp-runtime=none test - name: Test GTK Build - run: nix develop -c zig build -Dapp-runtime=gtk -Demit-docs + run: nix develop -c zig build -Dapp-runtime=gtk -Demit-docs -Demit-webdata # This relies on the cache being populated by the commands above. - name: Test System Build diff --git a/src/build/webgen/main_commands.zig b/src/build/webgen/main_commands.zig index add8fc803..ad5c75734 100644 --- a/src/build/webgen/main_commands.zig +++ b/src/build/webgen/main_commands.zig @@ -1,5 +1,5 @@ const std = @import("std"); -const Action = @import("../../cli/action.zig").Action; +const Action = @import("../../cli/ghostty.zig").Action; const help_strings = @import("help_strings"); pub fn main() !void { |
