From 8b281e5b6b0295cab936682134d24bf5bb2d537d Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 27 Nov 2020 14:15:34 +0100 Subject: [PATCH] Only use travis for cron jobs Our primary CI has been Azure Pipelines for a while now already. Travis was primarily retained as a) a fast feedback builder and b) to test architectures not available elsewhere. Due to Travis CI open source policy changes, Travis is no longer useful as a fast feedback builder. As such, only use it for cron job builds. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 34d2f2b74a..e597e50bb6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,8 +70,10 @@ jobs: include: - env: ENABLE_ZTS=0 ENABLE_DEBUG=0 arch: amd64 + if: type = cron - env: ENABLE_ZTS=1 ENABLE_DEBUG=1 arch: amd64 + if: type = cron - env: ENABLE_ZTS=1 ENABLE_DEBUG=1 SKIP_IO_CAPTURE_TESTS=1 ARM64=1 arch: arm64 if: type = cron -- 2.50.1