From 13e898549a1031caaec8f47c18da899a60a29524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Heffner?= <56156750+gitgoodjhe@users.noreply.github.com> Date: Fri, 14 Feb 2020 14:03:02 +0100 Subject: [PATCH] TSK-1128 Adjust verify_docs_alive.sh for refactored packages --- ci/verify_docs_alive.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/verify_docs_alive.sh b/ci/verify_docs_alive.sh index 605fef7c1c..717551fce8 100755 --- a/ci/verify_docs_alive.sh +++ b/ci/verify_docs_alive.sh @@ -5,6 +5,9 @@ BASE_URL=https://taskana.mybluemix.net/taskana test 200 -eq $(curl -sw %{http_code} -o /dev/null "$BASE_URL/docs/rest/rest-api.html") test -z "$(curl -s $BASE_URL/docs/rest/rest-api.html | grep 'Unresolved directive.*adoc')" -for module in taskana-core taskana-cdi taskana-spring; do +for module in taskana-core taskana-spring; do test 200 -eq $(curl -sw %{http_code} -o /dev/null "$BASE_URL/docs/java/$module/pro/taskana/package-summary.html") done +for module in taskana-cdi; do + test 200 -eq $(curl -sw %{http_code} -o /dev/null "$BASE_URL/docs/java/$module/pro/taskana/common/internal/package-summary.html") +done