Skip to content

Commit b40b6fa

Browse files
committed
wip
1 parent be2c4db commit b40b6fa

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,15 +207,13 @@ jobs:
207207
# here we link v8 build in macos path too.
208208
- run: |
209209
# v8
210-
ln -s v8/out/${{ env.OS }} v8/out/macos
210+
cd v8/out; ln -s ${{ env.OS }} macos; cd -
211211
# libiconv
212-
ln -s vendor/libiconv/out/${{env.OS}}-${{env.ARCH}} vendor/libiconv/out/macos-${{env.ARCH}}
212+
cd vendor/libiconv/out; ln -s ${{env.OS}}-${{env.ARCH}} macos-${{env.ARCH}}; cd -
213213
# netsurf
214-
ln -s vendor/netsurf/out/${{env.OS}}-${{env.ARCH}} vendor/netsurf/out/macos-${{env.ARCH}}
214+
cd vendor/netsurf/out; ln -s ${{env.OS}}-${{env.ARCH}} macos-${{env.ARCH}}; cd -
215215
# mimalloc
216-
ln -s vendor/mimalloc/out/${{env.OS}}-${{env.ARCH}} vendor/mimalloc/out/macos-${{env.ARCH}}
217-
# debug
218-
ls -R vendor/libiconv/out
216+
cd vendor/mimalloc/out; ln -s ${{env.OS}}-${{env.ARCH}} macos-${{env.ARCH}}; cd -
219217
220218
- name: zig build
221219
run: zig build --release=safe -Doptimize=ReleaseSafe -Dgit_commit=$(git rev-parse --short ${{ github.sha }}) static-lib

0 commit comments

Comments
 (0)