Parallelize build
Travis CI defaults to 2 core environments.
This commit is contained in:
parent
2338e70709
commit
674a543909
1 changed files with 6 additions and 6 deletions
12
.travis.yml
12
.travis.yml
|
@ -9,14 +9,14 @@ jobs:
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
- sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
|
- sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
|
||||||
script:
|
script:
|
||||||
- make bin USER_CFLAGS=-Werror
|
- make -j2 bin USER_CFLAGS=-Werror
|
||||||
- make lib QUIET=1
|
- make -j2 lib QUIET=1
|
||||||
- make test QUIET=1
|
- make -j2 test QUIET=1
|
||||||
- make samples
|
- make -j2 samples
|
||||||
- make -C src clean
|
- make -C src clean
|
||||||
- make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
|
- make -j2 bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
|
||||||
- make -C samples clean
|
- make -C samples clean
|
||||||
- make doc zip
|
- make -j2 doc zip
|
||||||
after_success:
|
after_success:
|
||||||
- make -f Makefile.travis
|
- make -f Makefile.travis
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue