2020-06-04 08:40:04 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright 2020 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://llvm.org/LICENSE.txt
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import yaml
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-07-10 17:53:22 +02:00
|
|
|
scripts_branch = os.getenv("scripts_branch", "master")
|
2020-06-17 13:52:33 +02:00
|
|
|
queue_prefix = os.getenv("ph_queue_prefix", "")
|
2020-07-10 17:53:22 +02:00
|
|
|
no_cache = os.getenv('ph_no_cache') is not None
|
|
|
|
filter_output = '--filter-output' if os.getenv('ph_no_filter_output') is None else ''
|
2020-07-09 15:24:27 +02:00
|
|
|
projects = os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;openmp;polly')
|
|
|
|
log_level = os.getenv('ph_log_level', 'WARNING')
|
2020-06-04 08:40:04 +02:00
|
|
|
steps = []
|
|
|
|
linux_buld_step = {
|
|
|
|
'label': ':linux: build and test linux',
|
|
|
|
'key': 'linux',
|
|
|
|
'commands': [
|
2020-07-09 15:24:27 +02:00
|
|
|
'set -euo pipefail',
|
2020-07-08 09:45:22 +02:00
|
|
|
'ccache --clear' if no_cache else '',
|
2020-07-08 12:20:31 +02:00
|
|
|
'ccache --zero-stats',
|
2020-06-18 11:54:28 +02:00
|
|
|
'mkdir -p artifacts',
|
2020-06-18 10:54:57 +02:00
|
|
|
'dpkg -l >> artifacts/packages.txt',
|
2020-06-04 08:40:04 +02:00
|
|
|
'export SRC=${BUILDKITE_BUILD_PATH}/llvm-premerge-checks',
|
|
|
|
'rm -rf ${SRC}',
|
2020-07-10 17:53:22 +02:00
|
|
|
f'git clone --depth 1 --branch {scripts_branch} https://github.com/google/llvm-premerge-checks.git '
|
|
|
|
'${SRC}',
|
|
|
|
'echo "llvm-premerge-checks commit"',
|
|
|
|
'git rev-parse HEAD',
|
|
|
|
'set +e',
|
|
|
|
f'${{SRC}}/scripts/premerge_checks.py --projects="{projects}" --log-level={log_level} {filter_output}',
|
2020-07-08 12:20:31 +02:00
|
|
|
'EXIT_STATUS=\\$?',
|
|
|
|
'echo "--- ccache stats"',
|
|
|
|
'ccache --show-stats',
|
|
|
|
'exit \\$EXIT_STATUS',
|
2020-06-04 08:40:04 +02:00
|
|
|
],
|
|
|
|
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
2020-06-29 12:17:03 +02:00
|
|
|
'agents': {'queue': f'{queue_prefix}linux'},
|
|
|
|
'timeout_in_minutes': 120,
|
2020-06-04 08:40:04 +02:00
|
|
|
}
|
2020-07-08 09:45:22 +02:00
|
|
|
clear_sccache = 'powershell -command "sccache --stop-server; ' \
|
|
|
|
'Remove-Item -Recurse -Force -ErrorAction Ignore $env:SCCACHE_DIR; ' \
|
|
|
|
'sccache --start-server"'
|
2020-07-09 11:00:47 +02:00
|
|
|
# FIXME: openmp is removed as it constantly fails.
|
2020-07-09 15:24:27 +02:00
|
|
|
projects = os.getenv('ph_projects', 'clang;clang-tools-extra;libc;libcxx;libcxxabi;lld;libunwind;mlir;polly')
|
2020-06-04 08:40:04 +02:00
|
|
|
windows_buld_step = {
|
|
|
|
'label': ':windows: build and test windows',
|
|
|
|
'key': 'windows',
|
|
|
|
'commands': [
|
2020-07-08 09:45:22 +02:00
|
|
|
clear_sccache if no_cache else '',
|
2020-06-04 12:36:46 +02:00
|
|
|
'sccache --zero-stats',
|
2020-06-04 08:40:04 +02:00
|
|
|
'set SRC=%BUILDKITE_BUILD_PATH%/llvm-premerge-checks',
|
|
|
|
'rm -rf %SRC%',
|
2020-07-10 17:53:22 +02:00
|
|
|
f'git clone --depth 1 --branch {scripts_branch} https://github.com/google/llvm-premerge-checks.git %SRC%',
|
|
|
|
'echo "llvm-premerge-checks commit"',
|
|
|
|
'git rev-parse HEAD',
|
|
|
|
'powershell -command "'
|
|
|
|
f'%SRC%/scripts/premerge_checks.py --projects=\'{projects}\' --log-level={log_level} {filter_output}; '
|
2020-06-04 08:40:04 +02:00
|
|
|
'\\$exit=\\$?;'
|
2020-07-08 12:20:31 +02:00
|
|
|
'echo \'--- sccache stats\';'
|
2020-06-04 08:40:04 +02:00
|
|
|
'sccache --show-stats;'
|
|
|
|
'if (\\$exit) {'
|
2020-07-07 15:13:38 +02:00
|
|
|
' echo success;'
|
2020-06-04 08:40:04 +02:00
|
|
|
' exit 0; } '
|
|
|
|
'else {'
|
2020-07-07 15:13:38 +02:00
|
|
|
' echo failure;'
|
2020-06-04 08:40:04 +02:00
|
|
|
' exit 1;'
|
2020-07-07 15:13:38 +02:00
|
|
|
'}"',
|
2020-06-04 08:40:04 +02:00
|
|
|
],
|
|
|
|
'artifact_paths': ['artifacts/**/*', '*_result.json'],
|
2020-06-29 12:17:03 +02:00
|
|
|
'agents': {'queue': f'{queue_prefix}windows'},
|
|
|
|
'timeout_in_minutes': 120,
|
2020-06-04 08:40:04 +02:00
|
|
|
}
|
2020-07-10 17:53:22 +02:00
|
|
|
if os.getenv('ph_skip_linux') is None:
|
|
|
|
steps.append(linux_buld_step)
|
|
|
|
if os.getenv('ph_skip_windows') is None:
|
|
|
|
steps.append(windows_buld_step)
|
2020-06-04 08:40:04 +02:00
|
|
|
print(yaml.dump({'steps': steps}))
|