File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 44
44
all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl"
45
45
modified_projects="$(keep-modified-projects ${all_projects})"
46
46
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
+
You can’t perform that action at this time.
0 commit comments