This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cico_build_deploy.sh
100 lines (77 loc) · 2.51 KB
/
cico_build_deploy.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/bin/bash
HOME_DIR="/home/fabric8/fabric8-ui-admin-console"
APP_DIR="/"
BUILDER_CONT="fabric8-ui-admin-console-builder"
DEPLOY_CONT="fabric8-ui-admin-console"
REGISTRY="quay.io"
if [ "$TARGET" = "rhel" ]; then
DOCKERFILE_DEPLOY="Dockerfile.deploy.rhel"
REGISTRY_URL=${REGISTRY}/openshiftio/rhel-fabric8-ui-admin-console
else
DOCKERFILE_DEPLOY="Dockerfile.deploy"
REGISTRY_URL=${REGISTRY}/openshiftio/fabric8-ui-admin-console
fi
# Show command before executing
set -x
# Exit on error
set -e
# Export needed vars
set +x
eval "$(./env-toolkit load -f jenkins-env.json \
BUILD_NUMBER \
BUILD_URL \
JENKINS_URL \
GIT_BRANCH \
GH_TOKEN \
NPM_TOKEN \
GIT_COMMIT \
QUAY_USERNAME \
QUAY_PASSWORD \
DEVSHIFT_TAG_LEN)"
export BUILD_TIMESTAMP=`date -u +%Y-%m-%dT%H:%M:%S`+00:00
set -x
# We need to disable selinux for now, XXX
/usr/sbin/setenforce 0 || :
# Get all the deps in
yum -y install docker
yum clean all
service docker start
# Build builder image
docker build -t "${BUILDER_CONT}" -f Dockerfile.builder .
# Clean builder container
docker ps | grep -q "${BUILDER_CONT}" && docker stop "${BUILDER_CONT}"
docker ps -a | grep -q "${BUILDER_CONT}" && docker rm "${BUILDER_CONT}"
if [ ! -d dist ]; then
mkdir dist
docker run --detach=true --name="${BUILDER_CONT}" -t -v $(pwd)/dist:/home/fabric8/fabric8-ui-admin-console/build:Z "${BUILDER_CONT}"
# Install npm packages
docker exec "${BUILDER_CONT}" npm install
## Exec unit tests
docker exec "${BUILDER_CONT}" npm run test
echo 'CICO: unit tests OK'
## Run the prod build
docker exec "${BUILDER_CONT}" npm run build:prod
## Copy everything from dist/ to build/ as a workaround for permission issue while deleting dist
docker exec -u root "${BUILDER_CONT}" cp -ra dist/. build/
fi
set +e
## Deploy
echo 'CICO: build OK'
TAG=$(echo $GIT_COMMIT | cut -c1-${DEVSHIFT_TAG_LEN})
if [ -n "${QUAY_USERNAME}" -a -n "${QUAY_PASSWORD}" ]; then
docker login -u ${QUAY_USERNAME} -p ${QUAY_PASSWORD} ${REGISTRY}
else
echo "Could not login, missing credentials for the registry"
fi
docker build -t "${DEPLOY_CONT}" -f "${DOCKERFILE_DEPLOY}" . && \
docker tag "${DEPLOY_CONT}" "${REGISTRY_URL}:$TAG" && \
docker push "${REGISTRY_URL}:$TAG" && \
docker tag "${DEPLOY_CONT}" "${REGISTRY_URL}:latest" && \
docker push "${REGISTRY_URL}:latest"
if [ $? -eq 0 ]; then
echo 'CICO: image pushed, npmjs published, ready to update deployed app'
exit 0
else
echo 'CICO: Image push to registry failed'
exit 2
fi