We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5f346a commit 74cf87dCopy full SHA for 74cf87d
ci/docker/web/Dockerfile
@@ -16,7 +16,10 @@ WORKDIR /home/project
16
COPY . .
17
18
FROM devel AS build
19
-RUN emcmake cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
+# 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
23
RUN cmake --build build --target all -v
24
#RUN cmake --build build --target install -v
25
0 commit comments