From 511aeba8eeb24a953228e00917f64703059a7673 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 22 Oct 2019 19:34:47 +1000 Subject: [PATCH 1/2] Travis: Disable all but one macOS build We need to mitigate slow scheduling of Travis macOS jobs. Closes ticket 32177. --- .travis.yml | 5 +++-- changes/ticket32177 | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 changes/ticket32177 diff --git a/.travis.yml b/.travis.yml index 564c97dbfd..7c7fcf4f6d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,8 +39,9 @@ matrix: ## We include a single coverage build with the best options for coverage - env: COVERAGE_OPTIONS="--enable-coverage" HARDENING_OPTIONS="" ## We run chutney on macOS, because macOS Travis has IPv6 - - env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes" - os: osx + # Disabled due to slow Travis macOS builds, see #32177 + #- env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes" + # os: osx ## Allow the build to report success (with non-required sub-builds ## continuing to run) if all required sub-builds have succeeded. diff --git a/changes/ticket32177 b/changes/ticket32177 new file mode 100644 index 0000000000..6d6816acde --- /dev/null +++ b/changes/ticket32177 @@ -0,0 +1,3 @@ + o Testing: + - Disable all but one Travis CI macOS build, to mitigate slow scheduling + of Travis macOS jobs. Closes ticket 32177. From 4c4a0d50ff4fd01862b78e8cbfaabfa9e4d4ae12 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 22 Oct 2019 19:38:50 +1000 Subject: [PATCH 2/2] Travis: Disable the Rust macOS build This build was added in 0.3.5. We need to mitigate slow scheduling of Travis macOS jobs. Closes ticket 32177. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 147ca41dff..1523ba8ca6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,9 +53,10 @@ matrix: ## We check disable module dirauth - env: MODULES_OPTIONS="--disable-module-dirauth" ## We run rust on macOS, because we have seen macOS rust failures before - - env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode" - compiler: clang - os: osx + # Disabled due to slow Travis macOS builds, see #32177 + #- env: RUST_OPTIONS="--enable-rust --enable-cargo-online-mode" + # compiler: clang + # os: osx ## We run chutney on macOS, because macOS Travis has IPv6 # Disabled due to slow Travis macOS builds, see #32177 #- env: CHUTNEY="yes" CHUTNEY_ALLOW_FAILURES="2" SKIP_MAKE_CHECK="yes"