[llvm] [polly] [CI] Fix command not found error in monolithic-linux (PR #137486)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 26 19:54:24 PDT 2025
https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/137486
>From 4e62d3db90ca03609e7e9b6bc36ba19214404260 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Sun, 27 Apr 2025 02:48:56 +0000
Subject: [PATCH] [CI] Fix command not found error in monolithic-linux
---
.ci/compute_projects.py | 3 ---
.ci/monolithic-linux.sh | 1 +
polly/CMakeLists.txt | 1 +
3 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/.ci/compute_projects.py b/.ci/compute_projects.py
index 17a2136a270d5..858f0e6c98f42 100644
--- a/.ci/compute_projects.py
+++ b/.ci/compute_projects.py
@@ -52,9 +52,6 @@
"clang": {"clang-tools-extra", "compiler-rt", "cross-project-tests"},
"clang-tools-extra": {"libc"},
"mlir": {"flang"},
- # Test everything if ci scripts are changed.
- # FIXME: Figure out what is missing and add here.
- ".ci": {"llvm", "clang", "lld", "lldb"},
}
DEPENDENT_RUNTIMES_TO_TEST = {"clang": {"libcxx", "libcxxabi", "libunwind"}}
diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh
index a56a8bcbffecb..a861b0ba0a565 100755
--- a/.ci/monolithic-linux.sh
+++ b/.ci/monolithic-linux.sh
@@ -48,6 +48,7 @@ function at-exit {
else
python3 "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py ":linux: Linux x64 Test Results" \
$retcode "${BUILD_DIR}"/test-results.*.xml >> $GITHUB_STEP_SUMMARY
+ echo "after?"
fi
}
trap at-exit EXIT
diff --git a/polly/CMakeLists.txt b/polly/CMakeLists.txt
index c3232752d307c..a97b635cea13c 100644
--- a/polly/CMakeLists.txt
+++ b/polly/CMakeLists.txt
@@ -1,4 +1,5 @@
# Check if this is a in tree build.
+# Testing.
if (NOT DEFINED LLVM_MAIN_SRC_DIR)
project(Polly)
cmake_minimum_required(VERSION 3.20.0)
More information about the llvm-commits
mailing list