gitlab: Remove make -j options.

Use the runner MAKEFLAGS instead.
This commit is contained in:
Alexandre Julliard 2024-10-02 22:06:35 +02:00
parent c70aa35ea5
commit a912eb809b
2 changed files with 5 additions and 5 deletions

View file

@ -12,5 +12,5 @@ autoreconf -f
cd build64
../configure -q -C --enable-werror --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
make -s -j$(nproc)
make -s
cd ..

View file

@ -12,18 +12,18 @@ autoreconf -f
cd build64
../configure -q -C --enable-win64 --enable-werror --with-mingw
make -s -j$(nproc)
make -s
cd ..
cd build32
../configure -q -C --enable-werror --with-mingw
make -s -j$(nproc)
make -s
cd ..
if ! test -s .git/rebase-merge/git-rebase-todo
then
make -s -j$(nproc) -C build32 install-lib install-test DESTDIR=$BASEDIR
make -s -j$(nproc) -C build64 install-lib install-test DESTDIR=$BASEDIR
make -s -C build32 install-lib install-test DESTDIR=$BASEDIR
make -s -C build64 install-lib install-test DESTDIR=$BASEDIR
fi
git reset --hard