File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -8,19 +8,14 @@ install: |
8
8
9
9
script : |
10
10
cd "$TRAVIS_BUILD_DIR"
11
- # -j : I'm unable to install nproc on Travis.
11
+ # --nproc : I'm unable to install nproc on Travis.
12
12
# TODO why? Is part of coreutils in Ubuntu 16.04:
13
13
# http://manpages.ubuntu.com/manpages/trusty/man1/nproc.1.html
14
14
# which ./configure is installing.
15
15
#
16
16
# awk: without it, too much stdout (4Mb max)
17
17
# If we ignore stdout: Travis kills job because it spent
18
18
# too long without any new stdout.
19
- #
20
- # -S otherwise apt-get instlal fails with:
21
- # The following packages have unmet dependencies:
22
- # libsdl2-dev : Depends: libegl1-mesa-dev
23
- # Depends: libgles2-mesa-dev
24
- bash -x ./build-qemu -j 16 -S |& awk 'NR % 1000 == 0'
25
- bash -x ./build-buildroot -j 16 -S |& awk 'NR % 1000 == 0'
19
+ bash -x ./build-qemu --nproc 16 |& awk 'NR % 1000 == 0'
20
+ bash -x ./build-buildroot --nproc 16 |& awk 'NR % 1000 == 0'
26
21
bash -x ./run --kernel-cli 'init=/poweroff.out'
You can’t perform that action at this time.
0 commit comments