Skip to content

Commit dbc377e

Browse files
authored
Merge branch 'main' into modules_dependency_discovery
2 parents b7b4e25 + 6cfaddf commit dbc377e

File tree

25,351 files changed

+2212138
-1235130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

25,351 files changed

+2212138
-1235130
lines changed

.ci/generate-buildkite-pipeline-premerge

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,17 @@ function keep-modified-projects() {
191191
}
192192

193193
function check-targets() {
194+
# Do not use "check-all" here because if there is "check-all" plus a
195+
# project specific target like "check-clang", that project's tests
196+
# will be run twice.
194197
projects=${@}
195198
for project in ${projects}; do
196199
case ${project} in
197200
clang-tools-extra)
198201
echo "check-clang-tools"
199202
;;
200203
compiler-rt)
201-
echo "check-all"
204+
echo "check-compiler-rt"
202205
;;
203206
cross-project-tests)
204207
echo "check-cross-project"
@@ -216,10 +219,10 @@ function check-targets() {
216219
echo "check-lldb"
217220
;;
218221
pstl)
219-
echo "check-all"
222+
# Currently we do not run pstl tests in CI.
220223
;;
221224
libclc)
222-
echo "check-all"
225+
# Currently there is no testing for libclc.
223226
;;
224227
*)
225228
echo "check-${project}"
@@ -269,7 +272,7 @@ if [[ "${linux_projects}" != "" ]]; then
269272
artifact_paths:
270273
- 'artifacts/**/*'
271274
- '*_result.json'
272-
- 'build/test-results.xml'
275+
- 'build/test-results.*.xml'
273276
agents: ${LINUX_AGENTS}
274277
retry:
275278
automatic:
@@ -292,7 +295,7 @@ if [[ "${windows_projects}" != "" ]]; then
292295
artifact_paths:
293296
- 'artifacts/**/*'
294297
- '*_result.json'
295-
- 'build/test-results.xml'
298+
- 'build/test-results.*.xml'
296299
agents: ${WINDOWS_AGENTS}
297300
retry:
298301
automatic:

0 commit comments

Comments
 (0)