On 30/05/2025 18.39, Andrew Jones wrote:
On Fri, May 30, 2025 at 01:52:14PM +0200, Thomas Huth wrote:
From: Thomas Huth <thuth@xxxxxxxxxx>
According to:
https://docs.travis-ci.com/user/billing-overview/#partner-queue-solution
only s390x and ppc64le are still part of the free OSS tier in Travis.
aarch64 has been removed sometime during the last year. Thus remove
the aarch64 job from our .travis.yml file now to avoid that someone
burns non-OSS CI credits with this job by accident now.
Signed-off-by: Thomas Huth <thuth@xxxxxxxxxx>
---
.travis.yml | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 99d55c5f..799a186b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,16 +8,6 @@ git:
jobs:
include:
- - arch: arm64
- addons:
- apt_packages: qemu-system-aarch64
- env:
- - CONFIG="--arch=arm64 --cc=clang"
- - TESTS="cache gicv2-active gicv2-ipi gicv3-active gicv3-ipi
- pci-test pmu-cycle-counter pmu-event-counter-config pmu-sw-incr
- selftest-setup selftest-smp selftest-vectors-kernel
- selftest-vectors-user timer"
-
- arch: ppc64le
addons:
apt_packages: clang qemu-system-ppc
--
2.49.0
Reviewed-by: Andrew Jones <andrew.jones@xxxxxxxxx>
With gitlab-ci, I'm not even sure who still looks at Travis, so maybe
nobody will notice that arm64 is getting dropped...
I guess I'm currently the only one who's using it ... so far, it was still a
nice way to test automatically on non-x86 hosts, but seems like these
options are also removed again bit by bit ... let's see how long ppc64le and
s390x still survive there...
Thomas