[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:49:21 PDT 2025


https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/137486

None

>From 5cb8434c9f6a238257d7f87b9ebdd7474f3c2d6c 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/monolithic-linux.sh | 1 +
 polly/CMakeLists.txt    | 1 +
 2 files changed, 2 insertions(+)

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