From 448cd0c0cefb8b559f022b97eda7721f94753480 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 24 Jul 2018 17:14:29 -0500 Subject: [PATCH] ci: handle documentation errors in ci Path change of the warning file let a few errors slipe by.. Fixes #9098 Signed-off-by: Anas Nashif --- .shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.shippable.yml b/.shippable.yml index 2d8a4d59a48..8c84181dac0 100644 --- a/.shippable.yml +++ b/.shippable.yml @@ -47,9 +47,9 @@ build: echo "Documentation build failed"; exit 1; fi - if [ -s doc/doc.warnings ]; then + if [ -s doc/_build/doc.warnings ]; then echo " => New documentation warnings/errors"; - cp doc/doc.warnings doc.warnings + cp doc/_build/doc.warnings doc.warnings fi; echo "- Verify commit message, coding style, doc build"; ./scripts/ci/check-compliance.py --commits ${COMMIT_RANGE} || true;