FIX: CSIT trending path
[ci-management.git] / jjb / scripts / publish_docs.sh
1 #!/bin/bash
2
3 # Copyright (c) 2021 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 echo "---> publish_docs.sh"
17
18 set -exuo pipefail
19
20 S3_BUCKET="fdio-docs-s3-cloudfront-index"
21 CDN_URL="s3-docs.fd.io"
22 PYTHON_SCRIPT="/w/workspace/publish_library.py"
23
24 if [[ ${JOB_NAME} == *merge* ]]; then
25     case "${JOB_NAME}" in
26         *"csit-trending"*)
27             SITE_DIR="${WORKSPACE}/resources/tools/presentation/_build"
28             s3_path="csit/${GERRIT_BRANCH}/trending"
29             ;;
30         *"csit-report"*)
31             SITE_DIR="${WORKSPACE}/resources/tools/presentation/_build"
32             s3_path="csit/${GERRIT_BRANCH}/report"
33             ;;
34         *"csit-docs"*)
35             SITE_DIR="${WORKSPACE}/resources/tools/doc_gen/_build"
36             s3_path="csit/${GERRIT_BRANCH}/docs"
37             ;;
38         *)
39             die "Unknown job: ${JOB_NAME}"
40     esac
41
42     echo "INFO: S3 path $s3_path"
43
44     echo "INFO: archiving docs to S3"
45     python3 $PYTHON_SCRIPT deploy_docs "$S3_BUCKET" "$s3_path" "$SITE_DIR"
46
47     echo "S3 docs: <a href=\"https://$CDN_URL/$s3_path\">https://$CDN_URL/$s3_path</a>"
48 fi