Skip to content

Commit

Permalink
TSK-1128 Adjust verify_docs_alive.sh for refactored packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gitgoodjhe committed Feb 14, 2020
1 parent ddb12a6 commit 13e8985
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/verify_docs_alive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 13e8985

Please sign in to comment.