From 7ea05cf476b1678a114fcb223a54fd8c0ee9fa8f Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Mon, 11 Aug 2025 19:55:16 +0000 Subject: [PATCH 1/3] Testing --- .ci/utils.sh | 1 + llvm/include/llvm/ADT/SmallVector.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.ci/utils.sh b/.ci/utils.sh index 30bf2d9df5ca1..dd198490ea026 100644 --- a/.ci/utils.sh +++ b/.ci/utils.sh @@ -26,6 +26,7 @@ function at-exit { mkdir -p artifacts sccache --show-stats >> artifacts/sccache_stats.txt cp "${BUILD_DIR}"/.ninja_log artifacts/.ninja_log + cp "${BUILD_DIR}"/*.log artifacts/ || : cp "${BUILD_DIR}"/test-results.*.xml artifacts/ || : # If building fails there will be no results files. diff --git a/llvm/include/llvm/ADT/SmallVector.h b/llvm/include/llvm/ADT/SmallVector.h index 80f7734b86907..25dede75c9214 100644 --- a/llvm/include/llvm/ADT/SmallVector.h +++ b/llvm/include/llvm/ADT/SmallVector.h @@ -31,6 +31,8 @@ #include #include +THIS WILL CAUSE A BUILD ERROR + namespace llvm { template class ArrayRef; From 0f047be777a4814b6b93fc3bc917eb65be4fe5cc Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Mon, 11 Aug 2025 20:10:20 +0000 Subject: [PATCH 2/3] fix thing --- .ci/utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/utils.sh b/.ci/utils.sh index dd198490ea026..97724444b96f7 100644 --- a/.ci/utils.sh +++ b/.ci/utils.sh @@ -26,7 +26,7 @@ function at-exit { mkdir -p artifacts sccache --show-stats >> artifacts/sccache_stats.txt cp "${BUILD_DIR}"/.ninja_log artifacts/.ninja_log - cp "${BUILD_DIR}"/*.log artifacts/ || : + cp "${MONOREPO_ROOT}"/*.log artifacts/ || : cp "${BUILD_DIR}"/test-results.*.xml artifacts/ || : # If building fails there will be no results files. @@ -34,7 +34,7 @@ function at-exit { if [[ "$GITHUB_STEP_SUMMARY" != "" ]]; then python "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py \ - $retcode "${BUILD_DIR}"/test-results.*.xml "${BUILD_DIR}"/ninja*.log \ + $retcode "${BUILD_DIR}"/test-results.*.xml "${MONOREPO_ROOT}"/ninja*.log \ >> $GITHUB_STEP_SUMMARY fi } From c8459196028fae7e92c0eb26ea78821f44955e10 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Mon, 11 Aug 2025 20:14:32 +0000 Subject: [PATCH 3/3] prepare fix --- llvm/include/llvm/ADT/SmallVector.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/include/llvm/ADT/SmallVector.h b/llvm/include/llvm/ADT/SmallVector.h index 25dede75c9214..80f7734b86907 100644 --- a/llvm/include/llvm/ADT/SmallVector.h +++ b/llvm/include/llvm/ADT/SmallVector.h @@ -31,8 +31,6 @@ #include #include -THIS WILL CAUSE A BUILD ERROR - namespace llvm { template class ArrayRef;