[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 6/6] .travis.yml: Do some more testing with Clang
From: |
Thomas Huth |
Subject: |
[PATCH 6/6] .travis.yml: Do some more testing with Clang |
Date: |
Wed, 20 Mar 2024 11:41:44 +0100 |
We are doing a lot of cross-compilation tests with GCC in the gitlab-CI
already, so we could get some more test coverage by using Clang in the
Travis-CI instead. Thus let's switch two additional jobs to use Clang
for compilation.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
.travis.yml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 7527f71c05..cef0308952 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -113,8 +113,9 @@ jobs:
- CONFIG="--disable-containers --enable-fdt=system
--target-list=${MAIN_SYSTEM_TARGETS} --cxx=/bin/false"
- - name: "[ppc64] GCC check-tcg"
+ - name: "[ppc64] Clang check-tcg"
arch: ppc64le
+ compiler: clang
addons:
apt_packages:
- libaio-dev
@@ -190,8 +191,9 @@ jobs:
$(exit $BUILD_RC);
fi
- - name: "[s390x] GCC (other-system)"
+ - name: "[s390x] Clang (other-system)"
arch: s390x
+ compiler: clang
addons:
apt_packages:
- libaio-dev
--
2.44.0
- [PATCH 0/6] Updates for the .travis.yml file, Thomas Huth, 2024/03/20
- [PATCH 2/6] .travis.yml: Remove the unused xfslib-dev package, Thomas Huth, 2024/03/20
- [PATCH 4/6] .travis.yml: Update the jobs to Ubuntu 22.04, Thomas Huth, 2024/03/20
- [PATCH 6/6] .travis.yml: Do some more testing with Clang,
Thomas Huth <=
- [PATCH 3/6] Revert ".travis.yml: Cache Avocado cache", Thomas Huth, 2024/03/20
- [PATCH 1/6] .travis.yml: Shorten the runtime of the problematic jobs, Thomas Huth, 2024/03/20
- [PATCH 5/6] .travis.yml: Remove the unused UNRELIABLE environment variable, Thomas Huth, 2024/03/20