Skip to content

Commit b90c479

Browse files
committed
ci: log-level is "all"
1 parent 6e0c840 commit b90c479

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

libdoc.sh

+5
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ fi
7676
# Run antora command
7777
while test $# -gt 0; do
7878
set -x
79+
if [ "$CI" = "true" ]; then
80+
ANTORA_LOG_LEVEL=all
81+
export ANTORA_LOG_LEVEL
82+
fi
83+
7984
if [ "$1" = "develop" ] || [ "$1" = "master" ]; then
8085
npx antora --fetch \
8186
--attribute page-boost-branch="$1" \

sitedoc.sh

+5
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,10 @@ if [ ! -d "node_modules" ] || [ "$(find package.json -prune -printf '%T@\n' | cu
8181
fi
8282

8383
set -x
84+
if [ "$CI" = "true" ]; then
85+
ANTORA_LOG_LEVEL=all
86+
export ANTORA_LOG_LEVEL
87+
fi
88+
8489
npx antora --fetch --attribute page-boost-branch="$1" --attribute page-commit-id="$commit_id" --stacktrace site.playbook.yml
8590

0 commit comments

Comments
 (0)