Skip to content

Commit 06c1c6a

Browse files
committed
wip
1 parent 278ea6e commit 06c1c6a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,14 @@ jobs:
206206
# zig uses macos instead of ios as target. But install created ios dir.
207207
# here we link v8 build in macos path too.
208208
- run: |
209-
mkdir -p v8/out/macos/debug/obj/zig/
210-
ln -s v8/out/${{ env.OS }}/debug/obj/zig/libc_v8.a v8/out/macos/debug/obj/zig/libc_v8.a
211-
mkdir -p v8/out/macos/release/obj/zig/
212-
ln -s v8/out/${{ env.OS }}/release/obj/zig/libc_v8.a v8/out/macos/release/obj/zig/libc_v8.a
209+
# v8
210+
ln -s v8/out/${{ env.OS }} v8/out/macos
211+
# libiconv
212+
ln -s vendor/libiconv/out/${{env.OS}}-${{env.ARCH}} vendor/libiconv/out/macos-${{env.ARCH}}
213+
# netsurf
214+
ln -s vendor/netsurf/out/${{env.OS}}-${{env.ARCH}} vendor/netsurf/out/macos-${{env.ARCH}}
215+
# mimalloc
216+
ln -s vendor/mimalloc/out/${{env.OS}}-${{env.ARCH}} vendor/mimalloc/out/macos-${{env.ARCH}}
213217
214218
- name: zig build
215219
run: zig build --release=safe -Doptimize=ReleaseSafe -Dgit_commit=$(git rev-parse --short ${{ github.sha }}) static-lib

0 commit comments

Comments
 (0)