build: actions: Don't hardcode parallel builds to 10 in release workflow

And convert from deprecated `backtick` syntax to POSIX-compatible $(...)
This commit is contained in:
Priit Laes
2021-03-13 15:32:10 +02:00
committed by Thomas Krijnen
parent 5604db8072
commit 510dca1aca
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
-DLIBXML2_INCLUDE_DIR=/usr/include/libxml2 \
-DLIBXML2_LIBRARIES=/usr/lib/x86_64-linux-gnu/libxml2.so \
../cmake
make -j`nproc`
make -j $(nproc)
make install
-
name: Package
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
-DLIBXML2_INCLUDE_DIR=/usr/include/libxml2 \
-DLIBXML2_LIBRARIES=/usr/lib/x86_64-linux-gnu/libxml2.so \
../cmake
make -j10
make -j $(nproc)
make install
- name: Package
id: package