1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00

[docker] jobs (nproc-1) for js version, due to low amount of memory

This commit is contained in:
Witold Filipczyk 2022-12-02 14:26:22 +01:00
parent 6052d0a6c3
commit 8797e2a5da
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
#!/bin/sh
rm -rf /tmp/builddir
rm -rf /root/tmp/builddir
meson /tmp/builddir \
meson /root/tmp/builddir \
-D88-colors=true \
-D256-colors=true \
-Dbacktrace=false \
@ -51,4 +51,4 @@ meson /tmp/builddir \
-Dzlib=true \
-Dzstd=true
meson compile -C /tmp/builddir
meson compile -C /root/tmp/builddir

View File

@ -1,8 +1,8 @@
#!/bin/sh
rm -rf /tmp/builddir_js
rm -rf /root/tmp/builddir_js
meson /tmp/builddir_js \
meson /root/tmp/builddir_js \
-D88-colors=true \
-D256-colors=true \
-Dbacktrace=false \
@ -51,4 +51,4 @@ meson /tmp/builddir_js \
-Dzlib=true \
-Dzstd=true
meson compile -C /tmp/builddir_js
meson compile -j $(($(nproc) - 1)) -C /root/tmp/builddir_js