-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LLVM and SPIRV-LLVM-Translator pulldown (WW32)
LLVM: llvm/llvm-project@920c461 SPIRV-LLVM-Translator: KhronosGroup/SPIRV-LLVM-Translator@bb2196b
- Loading branch information
Showing
15,114 changed files
with
1,057,684 additions
and
436,477 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/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 various CI jobs for | ||
# the LLVM project during pre-commit CI (each time a Phabricator diff is uploaded). | ||
# | ||
# See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format. | ||
# | ||
|
||
if ! git diff --name-only HEAD~1 | grep -q -E "^libcxx/|^libcxxabi/|^libunwind/|^runtimes/|^cmake/|^clang/"; then | ||
# libcxx/, libcxxabi/, libunwind/, runtimes/, cmake/ or clang/ are 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 <<EOF | ||
steps: | ||
EOF | ||
|
||
# If libc++ or one of the runtimes directories changed | ||
if git diff --name-only HEAD~1 | grep -q -E "^libcxx/|^libcxxabi/|^libunwind/|^runtimes/|^cmake/"; then | ||
cat <<EOF | ||
- trigger: "libcxx-ci" | ||
build: | ||
message: "${buildMessage}" | ||
commit: "${BUILDKITE_COMMIT}" | ||
branch: "${BUILDKITE_BRANCH}" | ||
EOF | ||
fi | ||
|
||
# If clang changed | ||
if git diff --name-only HEAD~1 | grep -q -E "^clang/"; then | ||
cat <<EOF | ||
- trigger: "clang-ci" | ||
build: | ||
message: "${buildMessage}" | ||
commit: "${BUILDKITE_COMMIT}" | ||
branch: "${BUILDKITE_BRANCH}" | ||
EOF | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/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 various CI jobs for | ||
# the LLVM project on scheduled builds. | ||
# | ||
# See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format. | ||
# | ||
|
||
cat <<EOF | ||
steps: | ||
- trigger: "libcxx-ci" | ||
build: | ||
message: "${BUILDKITE_MESSAGE}" | ||
commit: "${BUILDKITE_COMMIT}" | ||
branch: "${BUILDKITE_BRANCH}" | ||
- trigger: "clang-ci" | ||
build: | ||
message: "${BUILDKITE_MESSAGE}" | ||
commit: "${BUILDKITE_COMMIT}" | ||
branch: "${BUILDKITE_BRANCH}" | ||
EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.