diff options
author | Dan Kegel <dank@kegel.com> | 2020-06-01 19:05:41 -0700 |
---|---|---|
committer | Dan Kegel <dank@kegel.com> | 2020-06-05 14:15:32 -0700 |
commit | c82c74cae88a4614a71266f4825de16d167b979f (patch) | |
tree | fb2b5cdc13b29c05287eb2358d1d3b7727dd041e /ci | |
parent | 33ef3786227cc47f06a60a4882765f5468f2ce67 (diff) | |
download | meson-c82c74cae88a4614a71266f4825de16d167b979f.zip meson-c82c74cae88a4614a71266f4825de16d167b979f.tar.gz meson-c82c74cae88a4614a71266f4825de16d167b979f.tar.bz2 |
ci: run some builders with response file threshold set to zero
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/travis_script.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ci/travis_script.sh b/ci/travis_script.sh index a91a5dd..bdfd4c2 100755 --- a/ci/travis_script.sh +++ b/ci/travis_script.sh @@ -23,6 +23,10 @@ export CXX=$CXX export OBJC=$CC export OBJCXX=$CXX export PATH=/root/tools:$PATH +if test "$MESON_RSP_THRESHOLD" != "" +then + export MESON_RSP_THRESHOLD=$MESON_RSP_THRESHOLD +fi source /ci/env_vars.sh cd /root @@ -55,5 +59,9 @@ elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export OBJC=$CC export OBJCXX=$CXX export PATH=$HOME/tools:/usr/local/opt/qt/bin:$PATH:$(brew --prefix llvm)/bin + if test "$MESON_RSP_THRESHOLD" != "" + then + export MESON_RSP_THRESHOLD=$MESON_RSP_THRESHOLD + fi ./run_tests.py $RUN_TESTS_ARGS --backend=ninja -- $MESON_ARGS fi |