Skip to content

Commit 1520f15

Browse files
committed
travis: maybe fix. not sure
1 parent cc7163d commit 1520f15

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.travis.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,14 @@ install: |
88
99
script: |
1010
cd "$TRAVIS_BUILD_DIR"
11-
# -j: I'm unable to install nproc on Travis.
11+
# --nproc: I'm unable to install nproc on Travis.
1212
# TODO why? Is part of coreutils in Ubuntu 16.04:
1313
# http://manpages.ubuntu.com/manpages/trusty/man1/nproc.1.html
1414
# which ./configure is installing.
1515
#
1616
# awk: without it, too much stdout (4Mb max)
1717
# If we ignore stdout: Travis kills job because it spent
1818
# 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'
2621
bash -x ./run --kernel-cli 'init=/poweroff.out'

0 commit comments

Comments
 (0)