[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 5/6] travis.yml: Limit simultaneous jobs to 3
From: |
Alex Bennée |
Subject: |
[PATCH v1 5/6] travis.yml: Limit simultaneous jobs to 3 |
Date: |
Wed, 17 Feb 2021 12:19:31 +0000 |
From: Thomas Huth <thuth@redhat.com>
Even though the host machines that run the Travis CI jobs have
quite a lot of CPUs (e.g. nproc in an aarch64 job reports 32), the
containers on Travis are still limited to 2 vCPUs according to:
https://docs.travis-ci.com/user/reference/overview/#approx-boot-time
So we do not gain much when compiling with a job number based on
the output of "getconf _NPROCESSORS_ONLN" - quite the contrary, the
aarch64 containers are currently aborting quite often since they
are running out of memory. Thus let's rather use a fixed number
like 3 in the jobs here, so that e.g. two threads can actively run
while a third one might be waiting for I/O operations to complete.
This should hopefully fix the out-of-memory failures in the aarch64
CI jobs.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210217102531.1441557-1-thuth@redhat.com>
[AJB: add comment]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.travis.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index fc27fd6330..4609240b5a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -86,9 +86,11 @@ git:
submodules: false
# Common first phase for all steps
+# We no longer use nproc to calculate jobs:
+# https://travis-ci.community/t/nproc-reports-32-cores-on-arm64/5851
before_install:
- if command -v ccache ; then ccache --zero-stats ; fi
- - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
+ - export JOBS=3
- echo "=== Using ${JOBS} simultaneous jobs ==="
# Configure step - may be overridden
--
2.20.1
- [PATCH v1 0/6] my current testing/next queue (meson/gitlab/fedora bump), Alex Bennée, 2021/02/17
- [PATCH v1 4/6] docker: Bump Fedora images to release 33, Alex Bennée, 2021/02/17
- [PATCH v1 2/6] gitlab-ci: Display Avocado log content when tests timeout, Alex Bennée, 2021/02/17
- [PATCH v1 1/6] meson.build: expose TCG cross compiler information in summary, Alex Bennée, 2021/02/17
- [PATCH v1 6/6] tests/acceptance: allow a "graceful" failing for virtio-gpu test, Alex Bennée, 2021/02/17
- [PATCH v1 5/6] travis.yml: Limit simultaneous jobs to 3,
Alex Bennée <=
- [PATCH v1 3/6] gitlab-ci.yml: Run check-tcg with TCI, Alex Bennée, 2021/02/17