CI: build in 4 processes to speed up the build

This commit is contained in:
Martin Pulec
2020-02-18 16:05:39 +01:00
parent e5bec56827
commit ba41ab041b
3 changed files with 7 additions and 7 deletions

View File

@@ -38,7 +38,7 @@ jobs:
- name: configure
run: ./autogen.sh --enable-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: make
run: make
run: make -j4
- name: make check
run: make check
- name: make distcheck
@@ -67,7 +67,7 @@ jobs:
- name: configure
run: ./autogen.sh --enable-qt --with-live555=/usr/local
- name: make
run: make osx-gui-dmg
run: make -j4 osx-gui-dmg
- name: make check
run: make check
- name: make distcheck
@@ -108,7 +108,7 @@ jobs:
- name: configure
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi --with-live555=/usr/local"
- name: make
run: C:\msys64\usr\bin\bash -lc "make"
run: C:\msys64\usr\bin\bash -lc "make -j4"
- name: make check
run: C:\msys64\usr\bin\bash -lc "make check"
- name: make dist-check

View File

@@ -27,7 +27,7 @@ jobs:
run: ./autogen.sh --enable-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: Build with cov-build
run: |
/tmp/cov-analysis*/bin/cov-build --dir cov-int make -j 2
/tmp/cov-analysis*/bin/cov-build --dir cov-int make -j4
- name: Submit the result to Coverity Scan
run: |
tar caf ultragrid.tar.xz cov-int

View File

@@ -66,7 +66,7 @@ jobs:
- name: configure
run: ./autogen.sh --enable-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: make
run: make
run: make -j4
- name: make check
run: make check
- name: make distcheck
@@ -98,7 +98,7 @@ jobs:
- name: configure
run: ./autogen.sh --enable-qt --with-live555=/usr/local
- name: make
run: make osx-gui-dmg
run: make -j4 osx-gui-dmg
- name: make check
run: make check
- name: make distcheck
@@ -142,7 +142,7 @@ jobs:
- name: configure
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi --with-live555=/usr/local"
- name: make
run: C:\msys64\usr\bin\bash -lc "make"
run: C:\msys64\usr\bin\bash -lc "make -j4"
- name: make check
run: C:\msys64\usr\bin\bash -lc "make check"
- name: make dist-check