[libcxx-commits] [PATCH] D106534: [libc++][ci] Detect not committed generated files.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jul 24 02:46:34 PDT 2021
Mordante updated this revision to Diff 361429.
Mordante added a comment.
The last build passed as expected.
Restore the removed CI steps.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106534/new/
https://reviews.llvm.org/D106534
Files:
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -170,7 +170,14 @@
echo "+++ Making sure the generator scripts were run"
${NINJA} -vC "${BUILD_DIR}" libcxx-generate-files
git diff | tee ${BUILD_DIR}/generated_output.patch
+ git ls-files -o --exclude-standard | tee ${BUILD_DIR}/generated_output.status
! grep -q '^--- a' ${BUILD_DIR}/generated_output.patch || false
+ if [ -s ${BUILD_DIR}/generated_output.status ]; then
+ echo "It looks like not all the generator scripts were run,"
+ echo "did you forget to build the libcxx-generate-files target?"
+ echo "Did you add all new files it generated?"
+ false
+ fi
# Reject patches that introduce non-ASCII characters or hard tabs.
# Depends on LC_COLLATE set at the top of this script.
Index: libcxx/utils/ci/buildkite-pipeline.yml
===================================================================
--- libcxx/utils/ci/buildkite-pipeline.yml
+++ libcxx/utils/ci/buildkite-pipeline.yml
@@ -40,6 +40,7 @@
command: "libcxx/utils/ci/run-buildbot check-generated-output"
artifact_paths:
- "**/generated_output.patch"
+ - "**/generated_output.status"
agents:
queue: "libcxx-builders"
os: "linux"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106534.361429.patch
Type: text/x-patch
Size: 1374 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210724/4472c93e/attachment.bin>
More information about the libcxx-commits
mailing list