Skip to content

Commit 74cf87d

Browse files
committed
ci: fix web_build
1 parent d5f346a commit 74cf87d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/docker/web/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ WORKDIR /home/project
1616
COPY . .
1717

1818
FROM devel AS build
19-
RUN emcmake cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
19+
# To remove once https://gitlab.archlinux.org/archlinux/packaging/packages/emscripten/-/issues/7 is fixed
20+
RUN ln -s em-config.py /usr/lib/emscripten/em-config
21+
# To replace by emcmake once https://gitlab.archlinux.org/archlinux/packaging/packages/emscripten/-/issues/7 is fixed
22+
RUN emcmake.py cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=make
2023
RUN cmake --build build --target all -v
2124
#RUN cmake --build build --target install -v
2225

0 commit comments

Comments
 (0)