2023-07-12 08:55:07 -04:00
|
|
|
#!/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
|
2024-01-24 10:44:35 -05:00
|
|
|
# the LLVM project during pre-commit CI.
|
2023-07-12 08:55:07 -04:00
|
|
|
#
|
|
|
|
# See https://buildkite.com/docs/agent/v3/cli-pipeline#pipeline-format.
|
|
|
|
#
|
2023-08-31 16:18:27 +02:00
|
|
|
# As this outputs a yaml file, it's possible to log messages to stderr or
|
|
|
|
# prefix with "#".
|
|
|
|
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
# Environment variables script works with:
|
2023-10-17 11:24:43 +02:00
|
|
|
|
2024-01-25 16:38:53 -05:00
|
|
|
# Set by buildkite
|
|
|
|
: ${BUILDKITE_PULL_REQUEST_BASE_BRANCH:=}
|
|
|
|
: ${BUILDKITE_COMMIT:=}
|
|
|
|
: ${BUILDKITE_BRANCH:=}
|
|
|
|
# Fetch origin to have an up to date merge base for the diff.
|
|
|
|
git fetch origin
|
2023-10-17 11:24:43 +02:00
|
|
|
# List of files affected by this commit
|
2024-01-25 16:48:07 -05:00
|
|
|
: ${MODIFIED_FILES:=$(git diff --name-only origin/${BUILDKITE_PULL_REQUEST_BASE_BRANCH}...HEAD)}
|
2023-08-31 16:18:27 +02:00
|
|
|
# Filter rules for generic windows tests
|
|
|
|
: ${WINDOWS_AGENTS:='{"queue": "windows"}'}
|
|
|
|
# Filter rules for generic linux tests
|
|
|
|
: ${LINUX_AGENTS:='{"queue": "linux"}'}
|
2023-07-12 08:55:07 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-08-31 16:18:27 +02:00
|
|
|
echo "Files modified:" >&2
|
|
|
|
echo "$MODIFIED_FILES" >&2
|
|
|
|
modified_dirs=$(echo "$MODIFIED_FILES" | cut -d'/' -f1 | sort -u)
|
|
|
|
echo "Directories modified:" >&2
|
|
|
|
echo "$modified_dirs" >&2
|
2023-06-12 14:45:48 -07:00
|
|
|
|
2023-08-31 16:18:27 +02:00
|
|
|
# Project specific pipelines.
|
|
|
|
|
|
|
|
# If libc++ or one of the runtimes directories changed.
|
|
|
|
if echo "$modified_dirs" | 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
|
|
|
|
|
|
|
|
# Generic pipeline for projects that have not defined custom steps.
|
|
|
|
#
|
|
|
|
# Individual projects should instead define the pre-commit CI tests that suits their
|
|
|
|
# needs while letting them run on the infrastructure provided by LLVM.
|
|
|
|
|
2023-06-12 14:45:48 -07:00
|
|
|
# Figure out which projects need to be built on each platform
|
2025-03-28 22:25:52 -07:00
|
|
|
source <(git diff --name-only origin/${BUILDKITE_PULL_REQUEST_BASE_BRANCH}...HEAD | python3 .ci/compute_projects.py Linux)
|
|
|
|
linux_projects=${projects_to_build}
|
|
|
|
linux_check_targets=${project_check_targets}
|
|
|
|
linux_runtimes=${runtimes_to_build}
|
|
|
|
linux_runtime_check_targets=${runtimes_check_targets}
|
2023-06-12 14:45:48 -07:00
|
|
|
|
2025-03-28 22:25:52 -07:00
|
|
|
source <(git diff --name-only origin/${BUILDKITE_PULL_REQUEST_BASE_BRANCH}...HEAD | python3 .ci/compute_projects.py Windows)
|
|
|
|
windows_projects=${projects_to_build}
|
|
|
|
windows_check_targets=${project_check_targets}
|
[clang][ci] Move libc++ testing into the main PR pipeline (#93318)
Following the discussion in
https://github.com/llvm/llvm-project/pull/93233#issuecomment-2127920882,
this patch merges `clang-ci` pipeline into main `GitHub Pull Requests`
pipeline. `clang-ci` enables additional test coverage for Clang by
compiling it, and then using it to compile and test libc++, libc++abi,
and libunwind in C++03, C++26, and Clang Modules modes.
Additional work we skip and total time savings we should see:
1. Checking out the repo to generate the clang-ci pipeline (2 minutes)
2. Building Clang (3.5 minutes)
3. Uploading the artifacts once, then downloading them 3 times and
unpacking 3 times (0.5 minutes)
Note that because previously-split jobs for each mode are now under a
single Linux job, it now takes around 8 minutes more see the Linux CI
results despite total time savings.
The primary goal of this patch is to reduce the load of CI by removing
duplicated work. I consider this goal achieved. I could keep the job
parallelism we had (3 libc++ jobs depending on a main Linux job), but I
don't consider it worth the effort and opportunity cost, because
parallelism is not helping once the pool of builders is fully
subscribed.
2024-05-28 02:25:15 +04:00
|
|
|
|
2023-06-12 14:45:48 -07:00
|
|
|
|
|
|
|
# Generate the appropriate pipeline
|
|
|
|
if [[ "${linux_projects}" != "" ]]; then
|
|
|
|
cat <<EOF
|
2023-08-31 16:18:27 +02:00
|
|
|
- label: ':linux: Linux x64'
|
2023-06-12 14:45:48 -07:00
|
|
|
artifact_paths:
|
2023-09-12 12:11:18 +02:00
|
|
|
- 'artifacts/**/*'
|
|
|
|
- '*_result.json'
|
2024-11-12 13:24:44 +00:00
|
|
|
- 'build/test-results.*.xml'
|
2023-08-31 16:18:27 +02:00
|
|
|
agents: ${LINUX_AGENTS}
|
2023-06-12 14:45:48 -07:00
|
|
|
retry:
|
|
|
|
automatic:
|
|
|
|
- exit_status: -1 # Agent was lost
|
|
|
|
limit: 2
|
2023-08-31 16:18:27 +02:00
|
|
|
- exit_status: 255 # Forced agent shutdown
|
|
|
|
limit: 2
|
2023-06-12 14:45:48 -07:00
|
|
|
timeout_in_minutes: 120
|
|
|
|
env:
|
|
|
|
CC: 'clang'
|
|
|
|
CXX: 'clang++'
|
|
|
|
commands:
|
[clang][ci] Move libc++ testing into the main PR pipeline (#93318)
Following the discussion in
https://github.com/llvm/llvm-project/pull/93233#issuecomment-2127920882,
this patch merges `clang-ci` pipeline into main `GitHub Pull Requests`
pipeline. `clang-ci` enables additional test coverage for Clang by
compiling it, and then using it to compile and test libc++, libc++abi,
and libunwind in C++03, C++26, and Clang Modules modes.
Additional work we skip and total time savings we should see:
1. Checking out the repo to generate the clang-ci pipeline (2 minutes)
2. Building Clang (3.5 minutes)
3. Uploading the artifacts once, then downloading them 3 times and
unpacking 3 times (0.5 minutes)
Note that because previously-split jobs for each mode are now under a
single Linux job, it now takes around 8 minutes more see the Linux CI
results despite total time savings.
The primary goal of this patch is to reduce the load of CI by removing
duplicated work. I consider this goal achieved. I could keep the job
parallelism we had (3 libc++ jobs depending on a main Linux job), but I
don't consider it worth the effort and opportunity cost, because
parallelism is not helping once the pool of builders is fully
subscribed.
2024-05-28 02:25:15 +04:00
|
|
|
- './.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"'
|
2023-06-12 14:45:48 -07:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${windows_projects}" != "" ]]; then
|
|
|
|
cat <<EOF
|
2023-08-31 16:18:27 +02:00
|
|
|
- label: ':windows: Windows x64'
|
2023-06-12 14:45:48 -07:00
|
|
|
artifact_paths:
|
2023-09-12 12:11:18 +02:00
|
|
|
- 'artifacts/**/*'
|
|
|
|
- '*_result.json'
|
2024-11-12 13:24:44 +00:00
|
|
|
- 'build/test-results.*.xml'
|
2023-08-31 16:18:27 +02:00
|
|
|
agents: ${WINDOWS_AGENTS}
|
2023-06-12 14:45:48 -07:00
|
|
|
retry:
|
|
|
|
automatic:
|
|
|
|
- exit_status: -1 # Agent was lost
|
|
|
|
limit: 2
|
2023-08-31 16:18:27 +02:00
|
|
|
- exit_status: 255 # Forced agent shutdown
|
|
|
|
limit: 2
|
2023-06-12 14:45:48 -07:00
|
|
|
timeout_in_minutes: 150
|
|
|
|
env:
|
2025-01-24 15:37:36 -08:00
|
|
|
MAX_PARALLEL_COMPILE_JOBS: '16'
|
|
|
|
MAX_PARALLEL_LINK_JOBS: '4'
|
2023-06-12 14:45:48 -07:00
|
|
|
commands:
|
2023-08-31 16:18:27 +02:00
|
|
|
- 'C:\\BuildTools\\Common7\\Tools\\VsDevCmd.bat -arch=amd64 -host_arch=amd64'
|
|
|
|
- 'bash .ci/monolithic-windows.sh "$(echo ${windows_projects} | tr ' ' ';')" "$(echo ${windows_check_targets})"'
|
|
|
|
EOF
|
|
|
|
fi
|