[libcxx-commits] [libcxx] d6f00f8 - [libc++] Trigger CI when cmake/ is modified

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 21 10:51:12 PDT 2022


Author: Louis Dionne
Date: 2022-03-21T13:51:01-04:00
New Revision: d6f00f88390702df32b93824f4f1a06bf3916472

URL: https://github.com/llvm/llvm-project/commit/d6f00f88390702df32b93824f4f1a06bf3916472
DIFF: https://github.com/llvm/llvm-project/commit/d6f00f88390702df32b93824f4f1a06bf3916472.diff

LOG: [libc++] Trigger CI when cmake/ is modified

Added: 
    

Modified: 
    libcxx/utils/ci/buildkite-pipeline-premerge.sh

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/buildkite-pipeline-premerge.sh b/libcxx/utils/ci/buildkite-pipeline-premerge.sh
index 7af20a698ccd8..32aa356622ca0 100755
--- a/libcxx/utils/ci/buildkite-pipeline-premerge.sh
+++ b/libcxx/utils/ci/buildkite-pipeline-premerge.sh
@@ -17,8 +17,8 @@
 
 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
 
-if ! git 
diff  --name-only HEAD~1 | grep -q -E "libcxx/|libcxxabi/|libunwind/|runtimes/"; then
-  # libcxx/, libcxxabi/, libunwind/ or runtimes/ are not affected
+if ! git 
diff  --name-only HEAD~1 | grep -q -E "libcxx/|libcxxabi/|libunwind/|runtimes/|cmake/"; then
+  # libcxx/, libcxxabi/, libunwind/, runtimes/ or cmake/ are not affected
   exit 0
 fi
 


        


More information about the libcxx-commits mailing list