2 #===----------------------------------------------------------------------===##
4 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 # See https://llvm.org/LICENSE.txt for license information.
6 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 #===----------------------------------------------------------------------===##
11 # This file generates a Buildkite pipeline that triggers the libc++ CI
13 # See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format.
15 # Invoked by CI on pre-merge check for a commit.
18 DIR
="$( cd "$
( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
20 if ! git
diff --name-only HEAD~
1 |
grep -q -E "^libcxx/|^libcxxabi/|^libunwind/|^runtimes/|^cmake/"; then
21 # libcxx/, libcxxabi/, libunwind/, runtimes/ or cmake/ are not affected
25 reviewID
="$(git log --format=%B -n 1 | sed -nE 's/^Review-ID:[[:space:]]*(.+)$/\1/p')"
26 if [[ "${reviewID}" != "" ]]; then
27 buildMessage
="https://llvm.org/${reviewID}"
29 buildMessage
="Push to branch ${BUILDKITE_BRANCH}"
35 - trigger: "libcxx-ci"
37 message: "${buildMessage}"
38 commit: "${BUILDKITE_COMMIT}"
39 branch: "${BUILDKITE_BRANCH}"