This repository was archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdo_devops.sh
executable file
·84 lines (70 loc) · 2.71 KB
/
do_devops.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/env bash
set -e
# Only Require npm token for master branch build
if [[ -z $NPM_TOKEN && \
"${TRAVIS_PULL_REQUEST}" == "false" && \
$TRAVIS_BRANCH == $PROD_BRANCH ]]; then
echo NPM_TOKEN is required.
fi
if [[ -z $DEVOPS_SCRIPT_DIR ]]; then
echo DEVOPS_SCRIPT_DIR is required.
exit 1
fi
if [[ -z $DEV_BRANCH ]]; then
echo DEV_BRANCH is required.
exit 1
fi
if [[ -z $PROD_BRANCH ]]; then
echo PROD_BRANCH is required.
exit 1
fi
# Require github token for all but fork PR build
if [[ -z $GITHUB_TOKEN ]] && \
[[ ( "${TRAVIS_PULL_REQUEST}" == "false" ) || \
( "${TRAVIS_PULL_REQUEST_SLUG}" == "${TRAVIS_REPO_SLUG}" ) ]]; then
echo GITHUB_TOKEN is required.
exit 1
fi
GIT_URL=$(git config remote.origin.url)
if [[ ${GIT_URL:0:8} == "https://" ]]; then
export REMOTE=bot
git remote add $REMOTE "${GIT_URL:0:8}${GITHUB_TOKEN}@${GIT_URL:8}"
else
git config --global user.email "[email protected]"
git config --global user.name "MobileBuild"
fi
# Setting up hub
git config --global --add hub.host $(echo ${GIT_URL} | grep -Po "(?<=@).+\..+(?=:)|(?<=https:\/\/).+\..+(?=\/.+\/)")
# Settings to fetch origin
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
git config --add remote.origin.fetch +refs/tags/*:refs/tags/*
if [[ "${TRAVIS_PULL_REQUEST}" != "false" ]]; then
echo "Current build is a Pull Request build."
echo "Checking if the commits meets the Conventional Commits Specification."
git fetch
$DEVOPS_SCRIPT_DIR/conventional_commits_linter.sh
if [[ $TRAVIS_BRANCH == $PROD_BRANCH ]]; then
echo "The Pull Request is against ${PROD_BRANCH} branch. Proceed to update NPM package version."
$DEVOPS_SCRIPT_DIR/sync_bump_version_and_push.sh
else
# Only do pr check for ibm-developer PR builds, i.e. not for forks
if [[ "${TRAVIS_PULL_REQUEST_SLUG}" == "${TRAVIS_REPO_SLUG}" ]]; then
echo "Making sure ${TRAVIS_PULL_REQUEST_BRANCH} branch is in sync with ${TRAVIS_BRANCH} branch."
git fetch origin $TRAVIS_PULL_REQUEST_BRANCH
$DEVOPS_SCRIPT_DIR/check_branch_sync.sh
echo "Checking if there is an outstanding PR to ${PROD_BRANCH} branch from ${TRAVIS_BRANCH} branch."
$DEVOPS_SCRIPT_DIR/check_pr.sh
fi
fi
else
if [[ $TRAVIS_BRANCH == $PROD_BRANCH ]]; then
echo "Build is a ${PROD_BRANCH} branch build, let's publish and maybe notify."
$DEVOPS_SCRIPT_DIR/publish_and_notify.sh
else
echo "Nothing to do on a non-${PROD_BRANCH} branch build."
fi
fi
if [[ ! -z $REMOTE ]]; then
git remote remove $REMOTE
fi
echo "Everything looks good! Thank you for using Standard NPM DevOps. Have a nice day!"