[libcxx-commits] [libcxx] d94253b - [libc++][ci] Turn on Phabricator reporting by default
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 29 12:57:18 PDT 2020
Author: Louis Dionne
Date: 2020-09-29T15:57:07-04:00
New Revision: d94253b52eb1ccf08daaa281488b3903396ca9b9
URL: https://github.com/llvm/llvm-project/commit/d94253b52eb1ccf08daaa281488b3903396ca9b9
DIFF: https://github.com/llvm/llvm-project/commit/d94253b52eb1ccf08daaa281488b3903396ca9b9.diff
LOG: [libc++][ci] Turn on Phabricator reporting by default
Added:
Modified:
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot.sh
Removed:
################################################################################
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index b536e5b6f793..db9c4c2b9fc8 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -16,66 +16,61 @@
steps:
- label: "C++03"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx03"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx03 | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "C++11"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx11"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx11 | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "C++14"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx14"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx14 | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "C++17"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx17"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx17 | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "C++20"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx2a"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-cxx2a | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "-fno-exceptions"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-noexceptions"
- agents:
- queue: "libcxx-builders"
-
- - label: "32 bits"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-32bit"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-noexceptions | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "GCC/C++20"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-gcc"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-gcc | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "ASAN"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-asan"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-asan | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "TSAN"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-tsan"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-tsan | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "UBSAN"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-ubsan"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-ubsan | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "With LLVM's libunwind"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-with_llvm_unwinder"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-with_llvm_unwinder | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
- label: "Single-threaded"
- command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-singlethreaded"
+ command: "set -o pipefail && libcxx/utils/ci/run-buildbot.sh x86_64-ubuntu-singlethreaded | libcxx/utils/ci/phabricator-report"
agents:
queue: "libcxx-builders"
diff --git a/libcxx/utils/ci/run-buildbot.sh b/libcxx/utils/ci/run-buildbot.sh
index d4972b098a2c..25cdcc3ee164 100755
--- a/libcxx/utils/ci/run-buildbot.sh
+++ b/libcxx/utils/ci/run-buildbot.sh
@@ -123,5 +123,5 @@ ninja -C "${BUILD_DIR}" check-cxx
echo "+++ Running the libc++abi tests"
ninja -C "${BUILD_DIR}" check-cxxabi
-echo "+++ Running the libc++ benchmarks"
-ninja -C "${BUILD_DIR}" check-cxx-benchmarks
+# echo "+++ Running the libc++ benchmarks"
+# ninja -C "${BUILD_DIR}" check-cxx-benchmarks
More information about the libcxx-commits
mailing list