Skip to content

Commit aae527e

Browse files
More testing
1 parent e941885 commit aae527e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/premerge.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,17 @@ jobs:
4444
all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl"
4545
modified_projects="$(keep-modified-projects ${all_projects})"
4646
47+
windows_projects_to_test=$(exclude-windows $(compute-projects-to-test 1 ${modified_projects}))
48+
windows_check_targets=$(check-targets ${windows_projects_to_test} | sort | uniq)
49+
windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq)
50+
51+
if [[ "${windows_projects}" == "" ]]; then
52+
echo "No projects to build"
53+
exit 0
54+
fi
55+
56+
echo "Building projects: ${windows_projects}"
57+
echo "Running project checks targets: ${windows_check_targets}"
58+
59+
.ci/monolithic-windows.sh "$(echo ${windows_projects} | tr ' ' ';')" "$(echo ${windows_check_targets})"
60+

0 commit comments

Comments
 (0)