1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-05 17:25:17 +00:00

Parallelize build

Travis CI defaults to 2 core environments.
This commit is contained in:
Oliver Schmidt
2021-09-29 12:33:51 +02:00
committed by GitHub
parent 2338e70709
commit 674a543909

View File

@@ -9,14 +9,14 @@ jobs:
- sudo apt-get update
- sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
script:
- make bin USER_CFLAGS=-Werror
- make lib QUIET=1
- make test QUIET=1
- make samples
- make -j2 bin USER_CFLAGS=-Werror
- make -j2 lib QUIET=1
- make -j2 test QUIET=1
- make -j2 samples
- 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 doc zip
- make -j2 doc zip
after_success:
- make -f Makefile.travis