diff options
author | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-02-10 12:44:35 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@protonmail.com> | 2020-02-10 12:44:35 +0100 |
commit | b0a01299ed8cc2026e91a8dcad880b700e462cee (patch) | |
tree | 77f5697c09e82de401cef5e5030491226189437b /.travis.yml | |
parent | 9e77726fb7371022862449ab35f3d7f7eac223eb (diff) |
test: Disable s390 build on travis
Travis is consistently failing on s390 due to out of disk space issues,
which causes false positives. Disable the s390 build for now until
this is fixed some other way.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index fbc81b2614..364278ee6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -88,12 +88,14 @@ jobs: FILE_ENV="./ci/test/00_setup_env_arm.sh" QEMU_USER_CMD="" # Can run the tests natively without qemu - - stage: test - name: 'S390x [GOAL: install] [buster] [unit tests, functional tests]' - arch: s390x - env: >- - FILE_ENV="./ci/test/00_setup_env_s390x.sh" - QEMU_USER_CMD="" # Can run the tests natively without qemu +# s390 build was disabled temporarily because of disk space issues on the Travis VM +# +# - stage: test +# name: 'S390x [GOAL: install] [buster] [unit tests, functional tests]' +# arch: s390x +# env: >- +# FILE_ENV="./ci/test/00_setup_env_s390x.sh" +# QEMU_USER_CMD="" # Can run the tests natively without qemu - stage: test name: 'Win64 [GOAL: deploy] [unit tests, no gui, no functional tests]' |