Skip to content

Upgrade to Zig 0.14.1 #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
contents: write

env:
ZIG_VERSION: 0.14.0
ZIG_VERSION: 0.14.1
V8_REVISION: 13.6.233.8

jobs:
Expand All @@ -22,7 +22,7 @@ jobs:

runs-on: ubuntu-22.04
steps:
- uses: mlugg/setup-zig@v1
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

runs-on: macos-latest
steps:
- uses: mlugg/setup-zig@v1
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

runs-on: ubuntu-24.04-arm
steps:
- uses: mlugg/setup-zig@v1
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

runs-on: macos-13
steps:
- uses: mlugg/setup-zig@v1
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This dockerfile is used to build v8.
ARG ZIG_DOCKER_VERSION=0.14.0
ARG ZIG_DOCKER_VERSION=0.14.1
FROM ghcr.io/lightpanda-io/zig:${ZIG_DOCKER_VERSION} as build

ARG OS=linux
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Builds V8 from official source and provides C bindings and a Zig API. This would
V8 is the JS/WASM runtime that powers Google Chrome and Microsoft Edge.

## System Requirements
- Zig compiler (0.14.0). Clone and build https://github.com/ziglang/zig.
- Zig compiler (0.14.1). Clone and build https://github.com/ziglang/zig.
- Python 3 (2.7 seems to work as well)
- unzip (`apt install unzip`)
- rsync (`apt install rsync`)
Expand Down