Docs deploy via Terraform
[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 CDN_URL="s3-docs.fd.io"
21
22 if [[ ${JOB_NAME} == *merge* ]]; then
23     case "${JOB_NAME}" in
24         *"csit-trending"*)
25             workspace_dir="${WORKSPACE}/resources/tools/presentation/_build"
26             bucket_path="/csit/${GERRIT_BRANCH}/trending/"
27             ;;
28         *"csit-report"*)
29             workspace_dir="${WORKSPACE}/resources/tools/presentation/_build"
30             bucket_path="/csit/${GERRIT_BRANCH}/report/"
31             ;;
32         *"csit-docs"*)
33             workspace_dir="${WORKSPACE}/resources/tools/doc_gen/_build"
34             bucket_path="/csit/${GERRIT_BRANCH}/docs/"
35             ;;
36         *)
37             die "Unknown job: ${JOB_NAME}"
38     esac
39
40     export TF_VAR_workspace_dir=$workspace_dir
41     export TF_VAR_bucket_path=$bucket_path
42     export AWS_SHARED_CREDENTIALS_FILE=$HOME/.aws/credentials
43     export AWS_DEFAULT_REGION="us-east-1"
44
45     echo "INFO: archiving docs to S3"
46     pushd ..
47     terraform init -no-color
48     terraform apply -no-color -auto-approve
49     popd
50
51     echo "S3 docs: <a href=\"https://$CDN_URL/$bucket_path\">https://$CDN_URL/$bucket_path</a>"
52 fi