Skip to content

Commit 89b0143

Browse files
committed
zls & zig-bootstrap commit hashes
1 parent 672e352 commit 89b0143

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/bun_build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- 014-dev
7-
- pfg/update-zig-6
7+
- upgrade-0.15.1
88
concurrency:
99
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
1010
cancel-in-progress: true
@@ -27,17 +27,17 @@ jobs:
2727
- uses: actions/checkout@v4
2828
with:
2929
repository: ziglang/zig-bootstrap
30-
ref: 03a95efaf981b9cee59af8027304c37a59d36fc0
30+
ref: c6bc9398c72c7a63fe9420a9055dcfd1845bc266
3131
- run: rm -rf zig
3232
- uses: actions/checkout@v4
3333
with:
3434
path: zig
35-
- run: sed -i 's/ZIG_VERSION="0.14.0-dev.3299+31f353cd9"/ZIG_VERSION="0.14.1"/' build
35+
- run: sed -i 's/ZIG_VERSION="0.15.0-dev.1601+c1483eb05"/ZIG_VERSION="0.15.1"/' build
3636
- run: sed -i 's/Doptimize=ReleaseFast/Doptimize=ReleaseSafe/' build
3737
if: matrix.safe == 'true'
3838
- run: sed -i 's/Dstrip/Ddebug-extensions/' build
3939
if: matrix.safe == 'true'
40-
- run: sed -i 's/max_rss = 7_800_000_000/max_rss = 9_000_000_000/' zig/build.zig
40+
- run: sed -i 's/max_rss = 7_800_000_000/max_rss = 10_000_000_000/' zig/build.zig
4141
if: matrix.safe == 'true'
4242
- run: cat build
4343
- run: CMAKE_GENERATOR=Ninja ./build ${{ matrix.target }} baseline
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@v4
5555
with:
5656
repository: zigtools/zls
57-
ref: 3733f39c8dadfd37bb2a5487894e3ed467a5d895
57+
ref: 1383eefe3f4010d3c3113c7b93885672ce0819f3
5858
- uses: actions/download-artifact@v4
5959
- name: chmod
6060
run: |

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ fn addCompilerMod(b: *std.Build, options: AddCompilerModOptions) *std.Build.Modu
739739
fn addCompilerStep(b: *std.Build, options: AddCompilerModOptions) *std.Build.Step.Compile {
740740
const exe = b.addExecutable(.{
741741
.name = "zig",
742-
.max_rss = 7_800_000_000,
742+
.max_rss = 10_000_000_000,
743743
.root_module = addCompilerMod(b, options),
744744
});
745745
exe.stack_size = stack_size;

0 commit comments

Comments
 (0)