Skip to content

Commit 2cb3cc9

Browse files
committed
GitHub Actions: Patch Zig stdlib before compiling
see ziglang/zig#16043
1 parent 68ee5be commit 2cb3cc9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
- name: Set compile options (release)
2626
if: ${{ github.event_name == 'release' }}
2727
run: echo "OPTIONS=-Dno-git-hash=true" >> "$GITHUB_ENV"
28+
- name: Patch Uri.zig
29+
run: sed -i "s/or c == '?';/or c == '?' or c == '%';/g" "$(zig env | jq .std_dir -r)/Uri.zig"
2830
- name: Compile
2931
run: zig build -Dtarget=${{ matrix.cpu }}-${{ matrix.os }} -Doptimize=ReleaseFast ${{ env.OPTIONS }}
3032
- name: Set binary suffix (Windows)

0 commit comments

Comments
 (0)