xref: /openbsd-src/gnu/llvm/libcxx/utils/ci/buildkite-pipeline-snapshot.sh (revision 4bdff4bed0e3d54e55670334c7d0077db4170f86)
1#!/usr/bin/env bash
2#===----------------------------------------------------------------------===##
3#
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
7#
8#===----------------------------------------------------------------------===##
9
10#
11# This file generates a Buildkite pipeline that triggers the libc++ CI jobs.
12# See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format.
13#
14# Invoked by CI on full builds.
15#
16
17cat <<EOF
18steps:
19  - trigger: "libcxx-ci"
20    build:
21      message: "${BUILDKITE_MESSAGE}"
22      commit: "${BUILDKITE_COMMIT}"
23      branch: "${BUILDKITE_BRANCH}"
24EOF
25