mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
Added -j2 option to make
This commit is contained in:
4
.github/workflows/build-gnutls.yml
vendored
4
.github/workflows/build-gnutls.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
- name: cmake
|
- name: cmake
|
||||||
run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=1
|
run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=1
|
||||||
- name: make
|
- name: make
|
||||||
run: (cd build; make)
|
run: (cd build; make -j2)
|
||||||
- name: test
|
- name: test
|
||||||
run: ./build/tests
|
run: ./build/tests
|
||||||
build-macos:
|
build-macos:
|
||||||
@ -35,6 +35,6 @@ jobs:
|
|||||||
# hack to bypass EPERM issue on sendto()
|
# hack to bypass EPERM issue on sendto()
|
||||||
CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST
|
CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST
|
||||||
- name: make
|
- name: make
|
||||||
run: (cd build; make)
|
run: (cd build; make -j2)
|
||||||
- name: test
|
- name: test
|
||||||
run: ./build/tests
|
run: ./build/tests
|
||||||
|
2
.github/workflows/build-nice.yml
vendored
2
.github/workflows/build-nice.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
- name: cmake
|
- name: cmake
|
||||||
run: cmake -B build -DUSE_JUICE=0 -DUSE_GNUTLS=1
|
run: cmake -B build -DUSE_JUICE=0 -DUSE_GNUTLS=1
|
||||||
- name: make
|
- name: make
|
||||||
run: (cd build; make)
|
run: (cd build; make -j2)
|
||||||
- name: test
|
- name: test
|
||||||
run: ./build/tests
|
run: ./build/tests
|
||||||
|
|
||||||
|
4
.github/workflows/build-openssl.yml
vendored
4
.github/workflows/build-openssl.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
- name: cmake
|
- name: cmake
|
||||||
run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=0
|
run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=0
|
||||||
- name: make
|
- name: make
|
||||||
run: (cd build; make)
|
run: (cd build; make -j2)
|
||||||
- name: test
|
- name: test
|
||||||
run: ./build/tests
|
run: ./build/tests
|
||||||
build-macos:
|
build-macos:
|
||||||
@ -35,6 +35,6 @@ jobs:
|
|||||||
# hack to bypass EPERM issue on sendto()
|
# hack to bypass EPERM issue on sendto()
|
||||||
CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST
|
CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST
|
||||||
- name: make
|
- name: make
|
||||||
run: (cd build; make)
|
run: (cd build; make -j2)
|
||||||
- name: test
|
- name: test
|
||||||
run: ./build/tests
|
run: ./build/tests
|
||||||
|
Reference in New Issue
Block a user