diff options
| author | Philippe Mathieu-Daudé | 2019-09-03 15:26:49 +0200 |
|---|---|---|
| committer | Alex Bennée | 2019-09-10 15:14:32 +0200 |
| commit | e2bef011087c49104253dfbe49c5c7d9a83495dc (patch) | |
| tree | 41192e5ef7686e6bfaed7ecfc78738d1203d7351 | |
| parent | .travis.yml: Cache Linux/GCC 'non-debug profile' jobs together (diff) | |
| download | qemu-e2bef011087c49104253dfbe49c5c7d9a83495dc.tar.gz qemu-e2bef011087c49104253dfbe49c5c7d9a83495dc.tar.xz qemu-e2bef011087c49104253dfbe49c5c7d9a83495dc.zip | |
.travis.yml: Cache Linux/Clang jobs together
These jobs build different components but use the same
host features. Put them in the same cache bucket.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 74f10d352f..1ff2620579 100644 --- a/.travis.yml +++ b/.travis.yml @@ -173,11 +173,13 @@ matrix: # Test with Clang for compile portability (Travis uses clang-5.0) - env: - CONFIG="--disable-system" + - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" compiler: clang - env: - CONFIG="--disable-user --target-list=${MAIN_SOFTMMU_TARGETS}" + - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" compiler: clang @@ -190,6 +192,7 @@ matrix: - env: - CONFIG="--disable-user --target-list-exclude=${MAIN_SOFTMMU_TARGETS}" + - CACHE_NAME="${TRAVIS_BRANCH}-linux-clang-default" compiler: clang |
