From 58a4acfad218c83e8f189d6f7ba545bd3d7d20c4 Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Thu, 31 Mar 2022 17:38:56 +0200 Subject: doc(hicn): do not build doxygen Also: - print info about current script Signed-off-by: Mauro Sardara Change-Id: I89d05a8f1ac956015a3b55b892a1a63988e76816 Signed-off-by: Mauro Sardara --- jjb/scripts/hicn/build-extras.sh | 2 ++ jjb/scripts/hicn/build.sh | 2 ++ jjb/scripts/hicn/checkstyle.sh | 2 ++ jjb/scripts/hicn/docs.sh | 4 ---- 4 files changed, 6 insertions(+), 4 deletions(-) (limited to 'jjb') diff --git a/jjb/scripts/hicn/build-extras.sh b/jjb/scripts/hicn/build-extras.sh index bcf913be0..c1e0e3e1e 100644 --- a/jjb/scripts/hicn/build-extras.sh +++ b/jjb/scripts/hicn/build-extras.sh @@ -2,6 +2,8 @@ # basic build script example set -euxo pipefail +echo "---> jjb/scripts/hicn/build-extras.sh" + pushd scripts bash ./build-extras.sh popd diff --git a/jjb/scripts/hicn/build.sh b/jjb/scripts/hicn/build.sh index e1d20a48e..8dd150a74 100644 --- a/jjb/scripts/hicn/build.sh +++ b/jjb/scripts/hicn/build.sh @@ -2,6 +2,8 @@ # basic build script example set -euxo pipefail +echo "---> jjb/scripts/hicn/build.sh" + pushd scripts bash ./build-packages.sh popd diff --git a/jjb/scripts/hicn/checkstyle.sh b/jjb/scripts/hicn/checkstyle.sh index 636590e7a..451950ebb 100644 --- a/jjb/scripts/hicn/checkstyle.sh +++ b/jjb/scripts/hicn/checkstyle.sh @@ -1,5 +1,7 @@ #!/bin/bash +echo "---> jjb/scripts/hicn/checkstyle.sh" + if [ -f ./scripts/checkstyle.sh ];then bash scripts/checkstyle.sh else diff --git a/jjb/scripts/hicn/docs.sh b/jjb/scripts/hicn/docs.sh index f44b93dd1..24f47c395 100644 --- a/jjb/scripts/hicn/docs.sh +++ b/jjb/scripts/hicn/docs.sh @@ -1,18 +1,14 @@ #!/bin/bash set -xe -o pipefail -DOXYGEN_DOC_DIR="build-doxygen/docs/doxygen/html" DOC_DIR="docs/build/html" SITE_DIR="build/doc/deploy-site" echo "---> jjb/scripts/hicn/docs.sh" bash scripts/build-packages.sh sphinx -bash scripts/build-packages.sh doxygen if [[ "${JOB_NAME}" == *merge* ]]; then - mkdir -p "${SITE_DIR}"/doxygen mv -f "${DOC_DIR}" "${SITE_DIR}" - mv -f "${DOXYGEN_DOC_DIR}" "${SITE_DIR}"/doxygen find "${SITE_DIR}" -type f '(' -name '*.md5' -o -name '*.dot' -o -name '*.map' ')' -delete fi -- cgit 1.2.3-korg