diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-26 13:48:41 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-11-06 22:54:28 -0500 |
commit | 626b0389ecebbdab8ea8f29eb80c0d400376db28 (patch) | |
tree | 54c94ce183ab3e179d6ee236c175fb9306dd27ff /.travis.yml | |
parent | 5e63c96aa7b4e7fd8758cdc4753eece3a42481e0 (diff) | |
download | u-boot-626b0389ecebbdab8ea8f29eb80c0d400376db28.tar.gz |
travis: Fix the clang-7 test
When using the OVERRIDE variable we need to pass -O to buildman as well
to use the "override" option to buildman.
Fixed: e9500f49ea35 ("travis: Use buildman for building with clang")
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1e98378695..f6aec96770 100644 --- a/.travis.yml +++ b/.travis.yml @@ -389,7 +389,7 @@ matrix: env: - TEST_PY_BD="sandbox" BUILDMAN="^sandbox$" - OVERRIDE="clang-7" + OVERRIDE="-O clang-7" - name: "test/py sandbox_spl" env: - TEST_PY_BD="sandbox_spl" |