[libcxx-commits] [libcxx] 460953a - [libc++] Temporary hack: disable Apple back-deployment testing
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 3 14:03:20 PST 2021
Author: Louis Dionne
Date: 2021-03-03T17:02:48-05:00
New Revision: 460953ad9ab5a09d77a53f0af632818bbe62e450
URL: https://github.com/llvm/llvm-project/commit/460953ad9ab5a09d77a53f0af632818bbe62e450
DIFF: https://github.com/llvm/llvm-project/commit/460953ad9ab5a09d77a53f0af632818bbe62e450.diff
LOG: [libc++] Temporary hack: disable Apple back-deployment testing
Apple back-deployment testing is currently failing because Green Dragon
is down. To avoid stalling the whole CI pipeline because of that, I am
temporarily disabling those jobs until Green Dragon is back, or even
better we have found a different way to store those small artifacts.
Added:
Modified:
libcxx/utils/ci/buildkite-pipeline.yml
Removed:
################################################################################
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index f502364db665..9f69f93feb33 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -306,25 +306,28 @@ steps:
- exit_status: -1 # Agent was lost
limit: 2
- # Test back-deployment to older Apple platforms
- - label: "Apple back-deployment macosx10.9"
- command: "libcxx/utils/ci/run-buildbot x86_64-apple-system-backdeployment-10.9"
- artifact_paths:
- - "**/test-results.xml"
- agents:
- queue: "libcxx-builders-macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
- retry:
- automatic:
- - exit_status: -1 # Agent was lost
- limit: 2
+ # TODO: Re-enable those as soon as Green Dragon is back online. Currently,
+ # all the jobs are failing when they try to pull the older dylibs from
+ # Green Dragon, which is down.
+ # # Test back-deployment to older Apple platforms
+ # - label: "Apple back-deployment macosx10.9"
+ # command: "libcxx/utils/ci/run-buildbot x86_64-apple-system-backdeployment-10.9"
+ # artifact_paths:
+ # - "**/test-results.xml"
+ # agents:
+ # queue: "libcxx-builders-macos10.15" # TODO: For now, we're running the back-deployment tests for 10.9 on 10.15, because we don't have proper 10.9 machines
+ # retry:
+ # automatic:
+ # - exit_status: -1 # Agent was lost
+ # limit: 2
- - label: "Apple back-deployment macosx10.15"
- command: "libcxx/utils/ci/run-buildbot x86_64-apple-system-backdeployment-10.15"
- artifact_paths:
- - "**/test-results.xml"
- agents:
- queue: "libcxx-builders-macos10.15"
- retry:
- automatic:
- - exit_status: -1 # Agent was lost
- limit: 2
+ # - label: "Apple back-deployment macosx10.15"
+ # command: "libcxx/utils/ci/run-buildbot x86_64-apple-system-backdeployment-10.15"
+ # artifact_paths:
+ # - "**/test-results.xml"
+ # agents:
+ # queue: "libcxx-builders-macos10.15"
+ # retry:
+ # automatic:
+ # - exit_status: -1 # Agent was lost
+ # limit: 2
More information about the libcxx-commits
mailing list