ci: Don't limit parallel builds

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2021-05-22 03:15:45 +02:00
parent d42a6366d3
commit 4fd8be88e7
+1 -2
View File
@@ -16,7 +16,6 @@ jobs:
cc:
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
matrix:
license_version: [ 3, 2 ]
license: [ "GPL", "LGPL" ]
@@ -154,7 +153,7 @@ jobs:
- name: "Compile"
shell: bash
run: |
make -j $(($(grep ^cpu\\scores /proc/cpuinfo | uniq | awk '{print $4}') * 2))
make -j 4
make install
- name: "Upload Artifacts"
uses: actions/upload-artifact@v1