Skip to content

Commit 93a7713

Browse files
committed
Merge branch 'flang_runtime_premerge' into users/meinersbur/flang_runtime_premerge
2 parents 8345c19 + da2a539 commit 93a7713

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.ci/compute-projects.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
;;

.ci/generate-buildkite-pipeline-premerge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fi
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"
7777
modified_projects="$(keep-modified-projects ${all_projects})"
7878

7979
linux_projects_to_test=$(exclude-linux $(compute-projects-to-test 0 ${modified_projects}))

0 commit comments

Comments
 (0)