Changes to support building the development branch
[ci-management.git] / jjb / shell / build-docker.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 DOCKER_REPO='nexus3.akraino.org:10003'
18
19 set -e -u -x -o pipefail
20
21 echo '---> Starting build-docker'
22
23 case "$PROJECT" in
24 portal_user_interface)
25     CON_NAME='akraino-portal'
26     VERSION=`xmlstarlet sel -N "x=http://maven.apache.org/POM/4.0.0" -t -v "/x:project/x:version" AECPortalMgmt/pom.xml`
27
28     XMLFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/${PROJECT}/${VERSION}/maven-metadata.xml"
29     curl -O "${XMLFILE}"
30     V2=`grep value maven-metadata.xml | sed -e 's;</value>;;' -e 's;.*<value>;;' | uniq`
31     WARFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/${PROJECT}/${VERSION}/${PROJECT}-${V2}.war"
32     curl -O "${WARFILE}"
33
34     ln $(basename ${WARFILE}) AECPortalMgmt.war
35     (
36         echo 'FROM tomcat:8.5.31'
37         echo 'COPY AECPortalMgmt.war /usr/local/tomcat/webapps'
38     ) > Dockerfile
39     ;;
40
41 camunda_workflow)
42     CON_NAME='akraino-camunda-workflow-engine'
43     VERSION=`xmlstarlet sel -N "x=http://maven.apache.org/POM/4.0.0" -t -v "/x:project/x:version" akraino/pom.xml`
44
45     XMLFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/${PROJECT}/${VERSION}/maven-metadata.xml"
46     curl -O "${XMLFILE}"
47     V2=`grep value maven-metadata.xml | sed -e 's;</value>;;' -e 's;.*<value>;;' | uniq`
48     JARFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/${PROJECT}/${VERSION}/${PROJECT}-${V2}.jar"
49     curl -O ${JARFILE}
50     ;;
51
52 postgres_db_schema)
53     CON_NAME='akraino_schema_db'
54     source $WORKSPACE/version.properties
55
56     # Note: for some reason the project name is in the path twice for tar files
57     XMLFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/yaml_builds/yaml_builds/${VERSION}/maven-metadata.xml"
58     curl -O "${XMLFILE}"
59     V2=`grep value maven-metadata.xml | sed -e 's;</value>;;' -e 's;.*<value>;;' | uniq`
60     TGZFILE="${NEXUS_URL}/service/local/repositories/snapshots/content/org/akraino/yaml_builds/yaml_builds/${VERSION}/yaml_builds-${V2}.tgz"
61     curl -O "${TGZFILE}"
62     (mkdir yaml_builds; cd yaml_builds; tar xfv ../$(basename ${TGZFILE}))
63     mv yaml_builds/templates akraino-j2templates
64     ;;
65
66 *)
67     echo unknown project "$PROJECT"
68     exit 1
69     ;;
70 esac
71
72 # Append stream, if it is not the master stream
73 if [ "${STREAM}" != "master" ]
74 then
75     VERSION="${VERSION}-${STREAM}"
76 fi
77
78 # Build and push the Docker container
79 docker build -f Dockerfile -t ${CON_NAME}:${VERSION} .
80 docker tag ${CON_NAME}:${VERSION} ${DOCKER_REPO}/${CON_NAME}:${VERSION}
81 docker push ${DOCKER_REPO}/${CON_NAME}:${VERSION}
82
83 set +u +x