From 40f360c2e90bd833f648a614db441020eeabe925 Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Fri, 9 Oct 2020 12:23:48 +0200 Subject: [PATCH] [libc++] Update continous integration scripts Now libc++ pipeline will be triggered from the "premerge-checks" and the combined result are going to be returned to Harbormaster. Reviewed-by: ldionne Differential Revision: https://reviews.llvm.org/D89113 --- libcxx/utils/ci/buildkite-pipeline-premerge.sh | 42 ++++++++++++++++ libcxx/utils/ci/buildkite-pipeline-snapshot.sh | 25 ++++++++++ libcxx/utils/ci/buildkite-pipeline.yml | 67 +++++++++++++++++++------- libcxx/utils/ci/run-buildbot.sh | 36 +++++++------- 4 files changed, 135 insertions(+), 35 deletions(-) create mode 100755 libcxx/utils/ci/buildkite-pipeline-premerge.sh create mode 100755 libcxx/utils/ci/buildkite-pipeline-snapshot.sh diff --git a/libcxx/utils/ci/buildkite-pipeline-premerge.sh b/libcxx/utils/ci/buildkite-pipeline-premerge.sh new file mode 100755 index 0000000..ba6b5ae --- /dev/null +++ b/libcxx/utils/ci/buildkite-pipeline-premerge.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env bash +#===----------------------------------------------------------------------===## +# +# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +# See https://llvm.org/LICENSE.txt for license information. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +#===----------------------------------------------------------------------===## + +# +# This file generates a Buildkite pipeline that triggers the libc++ CI +# job(s) if needed. +# See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format. +# +# Invoked by CI on pre-merge check for a commit. +# + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" + +if ! git diff --name-only HEAD~1 | grep -q -E "libcxx/|libcxxabi/"; then + # libcxx is not affected + exit 0 +fi + +reviewID="$(git log --format=%B -n 1 | sed -nE 's/^Review-ID:[[:space:]]*(.+)$/\1/p')" +if [[ "${reviewID}" != "" ]]; then + buildMessage="https://llvm.org/${reviewID}" +else + buildMessage="Push to branch ${BUILDKITE_BRANCH}" +fi + + +cat </dev/null 2>&1 && pwd )" +cat <