Skip to content

Commit 2a97e4a

Browse files
committed
Merge branch 'main' into users/meinersbur/flang_runtime_split-headers
2 parents 4dc1b14 + 87bfa58 commit 2a97e4a

File tree

15,214 files changed

+1061747
-430869
lines changed

Some content is hidden

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

15,214 files changed

+1061747
-430869
lines changed

.ci/generate-buildkite-pipeline-premerge

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ 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
@@ -216,7 +219,7 @@ 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)
222225
# Currently there is no testing for libclc.
@@ -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)