summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-10-02 15:57:09 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-10-03 07:10:43 -0700
commit87b77e19803f1fccd4eaa7136ee2f0104369cfa2 (patch)
tree9040d0b64146ee8604d2245319198c206fcbbd43 /.github
parent4e3e0ed0563f359d8dcba3984d0a094f38049fe0 (diff)
ci: cleanup
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1638b0fd9..0b038a56d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -333,7 +333,7 @@ jobs:
run: nix build .#ghostty-releasefast
- name: Check version
- run: result/bin/ghostty +version | grep -q 'builtin.OptimizeMode.ReleaseFast'
+ run: result/bin/ghostty +version | grep -q '.ReleaseFast'
- name: Check to see if the binary has been stripped
run: nm result/bin/.ghostty-wrapped 2>&1 | grep -q 'no symbols'
@@ -342,7 +342,7 @@ jobs:
run: nix build .#ghostty-debug
- name: Check version
- run: result/bin/ghostty +version | grep -q 'builtin.OptimizeMode.Debug'
+ run: result/bin/ghostty +version | grep -q '.Debug'
- name: Check to see if the binary has not been stripped
run: nm result/bin/.ghostty-wrapped 2>&1 | grep -q 'main_ghostty.main'
@@ -513,7 +513,7 @@ jobs:
$fileContent = Get-Content -Path "build.zig" -Raw
$pattern = 'buildpkg\.requireZig\("(.*?)"\);'
$zigVersion = [regex]::Match($fileContent, $pattern).Groups[1].Value
- $version = "zig-windows-x86_64-$zigVersion"
+ $version = "zig-x86_64-windows-$zigVersion"
Write-Output $version
$uri = "https://ziglang.org/download/$zigVersion/$version.zip"
Invoke-WebRequest -Uri "$uri" -OutFile ".\zig-windows.zip"