diff options
author | Tom Rini <trini@konsulko.com> | 2021-03-04 16:59:00 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-04 17:51:43 -0500 |
commit | 6a026e5649f00c0b157a935279dfd625889db675 (patch) | |
tree | 62e11fc548a7a2dc5b7814594c4cbd8f26842ba0 /.gitlab-ci.yml | |
parent | b82492bbccb0ecdee17108ed43c4220f00f3f4f3 (diff) | |
download | u-boot-6a026e5649f00c0b157a935279dfd625889db675.zip u-boot-6a026e5649f00c0b157a935279dfd625889db675.tar.gz u-boot-6a026e5649f00c0b157a935279dfd625889db675.tar.bz2 |
Azure/GitLab: Use buildman -T0 for binman, etc, test
There are times where buildman seems to get stuck in this job when in
CI. Forcing single-threaded here allows us to complete and move on.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd38e65..4fb9aa1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -168,7 +168,7 @@ Run binman, buildman, dtoc, Kconfig and patman testsuites: export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl; export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; - ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl; + ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl; ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test; ./tools/buildman/buildman -t; ./tools/dtoc/dtoc -t; |