File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ function compute-projects-to-test() {
3232 # Flang is not stable in Windows CI at the moment
3333 if [[ $isForWindows == 0 ]]; then
3434 echo flang
35- echo flang-rt
3635 fi
3736 ;;
3837 clang)
@@ -48,7 +47,6 @@ function compute-projects-to-test() {
4847 # Flang is not stable in Windows CI at the moment
4948 if [[ $isForWindows == 0 ]]; then
5049 echo flang
51- echo flang-rt
5250 fi
5351 ;;
5452 * )
@@ -67,6 +65,10 @@ function compute-runtimes-to-test() {
6765 echo $p
6866 done
6967 ;;
68+ flang)
69+ for p in flang-rt; do
70+ echo $p
71+ done
7072 * )
7173 # Nothing to do
7274 ;;
Original file line number Diff line number Diff line change 7373# needs while letting them run on the infrastructure provided by LLVM.
7474
7575# Figure out which projects need to be built on each platform
76- all_projects=" bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl"
76+ all_projects=" bolt clang clang-tools-extra compiler-rt cross-project-tests flang flang-rt libc libclc lld lldb llvm mlir openmp polly pstl"
7777modified_projects=" $( keep-modified-projects ${all_projects} ) "
7878
7979linux_projects_to_test=$( exclude-linux $( compute-projects-to-test 0 ${modified_projects} ) )
You can’t perform that action at this time.
0 commit comments