[flang] [llvm] [Premerge] Add flang-rt (PR #128678)
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 06:26:27 PDT 2025
================
@@ -36,21 +35,30 @@ function compute-projects-to-test() {
;;
clang)
# lldb is temporarily removed to alleviate Linux pre-commit CI waiting times
- for p in clang-tools-extra compiler-rt cross-project-tests; do
+ for p in clang clang-tools-extra compiler-rt cross-project-tests; do
echo $p
done
;;
clang-tools-extra)
- echo libc
+ for p in clang-tools-extra libc; do
+ echo $p
+ done
;;
mlir)
+ echo mlir
+ # Flang is not stable in Windows CI at the moment
+ if [[ $isForWindows == 0 ]]; then
+ echo flang
+ fi
+ ;;
+ flang-rt)
# Flang is not stable in Windows CI at the moment
if [[ $isForWindows == 0 ]]; then
echo flang
fi
;;
*)
- # Nothing to do
+ echo "${project}"
----------------
Meinersbur wrote:
At the old location, it would always output the project, including "flang-rt". I could have added an if-condition to not print flang-rt, or filter it out afterwards in like in `exclude-linux`/`exclude-windows` but that doesn't seem its purpose, or just let it add it to "LLVM_ENABLE_PROJECTS" even though it it ignored there (like "llvm"). I found the best solution is to change the function to let each case decide whether to prints itself, which would also e.g. allow to not print "llvm" at some point.
I avoided modifying https://github.com/llvm/llvm-project/blob/main/.ci/generate-buildkite-pipeline-premerge itself, there are copies of that code, like in https://github.com/llvm/llvm-project/blob/main/.github/workflows/premerge.yaml
https://github.com/llvm/llvm-project/pull/128678
More information about the llvm-commits
mailing list