mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 10:40:21 +00:00
CI: build in 4 processes to speed up the build
This commit is contained in:
6
.github/workflows/ccpp.yml
vendored
6
.github/workflows/ccpp.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/coverity-scan.yml
vendored
2
.github/workflows/coverity-scan.yml
vendored
@@ -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
|
||||
|
||||
6
.github/workflows/nightly.yml
vendored
6
.github/workflows/nightly.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user