blob: 8aa89f050c6e757b4385dc69ad1f62302e6f7462 [file] [log] [blame]
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -08001#!/bin/bash
2# Ubuntu base build
3
4# vim: ts=4 sw=4 sts=4 et tw=72 :
5
6# force any errors to cause the script and job to end in failure
7set -xeu -o pipefail
8
9rh_systems() {
10 echo 'No changes to apply'
11}
12
Zack Williams85249ce2018-04-01 19:54:44 -070013ubuntu_install_java_setup() {
14
15 echo "debconf shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections
16
17 apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
18
19 DISTRO=$(lsb_release -cs)
20
21 apt-add-repository \
22 "deb http://ppa.launchpad.net/webupd8team/java/ubuntu $DISTRO main"
23}
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080024
25ubuntu_systems() {
26 apt-get clean
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080027
Zack Williams85249ce2018-04-01 19:54:44 -070028 # get prereqs for PPA and apt-over-HTTPS support
29 apt-get update
30 apt-get install -y apt-transport-https software-properties-common
31
32 # install java (not needed as SonarQube includes this)
33 # ubuntu_install_java_setup
34 # apt-get update
35 # apt-get install -y oracle-java8-installer
Luca Prete31860c52018-03-06 17:54:38 -080036
37 # set up ansible repo
Zack Williams85249ce2018-04-01 19:54:44 -070038 apt-add-repository -y ppa:ansible/ansible
Luca Prete31860c52018-03-06 17:54:38 -080039
40 # set up docker repo
Zack Williams85249ce2018-04-01 19:54:44 -070041 apt-key adv --keyserver keyserver.ubuntu.com --recv 0EBFCD88
42 add-apt-repository \
Luca Prete31860c52018-03-06 17:54:38 -080043 "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
44 $(lsb_release -cs) \
45 stable"
46
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080047 apt-get update
Luca Prete31860c52018-03-06 17:54:38 -080048
49 # install basic sofware requirements
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080050 apt-get install -y \
Zack Williams85249ce2018-04-01 19:54:44 -070051 "docker-ce=17.06*" \
Luca Prete31860c52018-03-06 17:54:38 -080052 ansible \
Luca Prete31860c52018-03-06 17:54:38 -080053 build-essential \
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080054 bzip2 \
55 curl \
56 git \
57 less \
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080058 nodejs \
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080059 npm \
Zack Williams85249ce2018-04-01 19:54:44 -070060 python \
Luca Prete31860c52018-03-06 17:54:38 -080061 python-dev \
62 python-netaddr \
63 python-pip \
Zack Williams85249ce2018-04-01 19:54:44 -070064 ssh \
Luca Prete31860c52018-03-06 17:54:38 -080065 sshpass \
Zack Williams85249ce2018-04-01 19:54:44 -070066 zip
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080067 # end of apt-get install list
Luca Prete31860c52018-03-06 17:54:38 -080068
69 # install python modules
Zack Williams85249ce2018-04-01 19:54:44 -070070 pip install \
71 Jinja2 \
72 ansible-lint \
73 astroid \
74 docker-compose==1.20.1 \
75 docker==3.2.1 \
Luca Prete31860c52018-03-06 17:54:38 -080076 gitpython \
Luca Prete90bfa5e2018-03-06 20:41:56 -080077 graphviz \
Zack Williams85249ce2018-04-01 19:54:44 -070078 isort \
79 pexpect \
80 pylint \
81 pyyaml \
Luca Prete31860c52018-03-06 17:54:38 -080082 robotframework \
Kailash Khalasicb327c62018-04-03 10:41:38 -070083 robotframework-httplibrary \
Zack Williams85249ce2018-04-01 19:54:44 -070084 robotframework-requests \
85 robotframework-sshlibrary
86 # end of pip install list
Luca Prete31860c52018-03-06 17:54:38 -080087
88 # install npm modules
89 npm install -g \
Zack Williams85249ce2018-04-01 19:54:44 -070090 gitbook-cli \
91 markdownlint \
Luca Prete31860c52018-03-06 17:54:38 -080092 typings
Zack Williams85249ce2018-04-01 19:54:44 -070093 # end of npm install list
Luca Prete31860c52018-03-06 17:54:38 -080094
95 # install repo
Zack Williams85249ce2018-04-01 19:54:44 -070096 REPO_SHA256SUM="394d93ac7261d59db58afa49bb5f88386fea8518792491ee3db8baab49c3ecda"
Luca Prete31860c52018-03-06 17:54:38 -080097 curl -o /tmp/repo 'https://gerrit.opencord.org/gitweb?p=repo.git;a=blob_plain;f=repo;hb=refs/heads/stable'
Zack Williams85249ce2018-04-01 19:54:44 -070098 echo "$REPO_SHA256SUM /tmp/repo" | sha256sum -c -
99 mv /tmp/repo /usr/local/bin/repo
100 chmod a+x /usr/local/bin/repo
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800101
Zack Williams85249ce2018-04-01 19:54:44 -0700102 # install sonarqube scanner
103 SONAR_SCANNER_CLI_VERSION="3.1.0.1141"
104 SONAR_SCANNER_CLI_SHA256SUM="efbe7d1a274bbed220846eccc5b36db853a6bab3ee576aebf93ddc604a89ced4"
105 curl -L -o /tmp/sonarscanner.zip https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_CLI_VERSION}-linux.zip
106 echo "$SONAR_SCANNER_CLI_SHA256SUM /tmp/sonarscanner.zip" | sha256sum -c -
107 pushd /opt
108 unzip /tmp/sonarscanner.zip
109 mv sonar-scanner-${SONAR_SCANNER_CLI_VERSION}-linux sonar-scanner
110 popd
111
Zack Williams8aa52822018-04-05 09:22:15 -0700112 # install helm (for lint)
113 HELM_VERSION="2.8.2"
114 HELM_SHA256SUM="614b5ac79de4336b37c9b26d528c6f2b94ee6ccacb94b0f4b8d9583a8dd122d3"
115 HELM_PLATFORM="linux-amd64"
116 curl -L -o /tmp/helm.tgz https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-${HELM_PLATFORM}.tar.gz
117 echo "$HELM_SHA256SUM /tmp/helm.tgz" | sha256sum -c -
118 pushd /tmp
119 tar -xzvf helm.tgz
120 mv ${HELM_PLATFORM}/helm /usr/local/bin/helm
121 chmod a+x /usr/local/bin/helm
122 popd
123
Zack Williams85249ce2018-04-01 19:54:44 -0700124 # clean up
125 apt-get clean
126 apt-get purge -y
127 apt-get autoremove -y
128 rm -rf /var/lib/apt/lists/*
129 rm -rf /var/cache/oracle-jdk8-installer
130 rm -rf /tmp/sonarscanner.zip
Zack Williams8aa52822018-04-05 09:22:15 -0700131 rm -rf /tmp/helm.tgz
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800132}
Zack Williams85249ce2018-04-01 19:54:44 -0700133
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800134all_systems() {
135 echo 'No common distribution configuration to perform'
136}
137
138echo "---> Detecting OS"
139ORIGIN=$(facter operatingsystem | tr '[:upper:]' '[:lower:]')
140
141case "${ORIGIN}" in
142 fedora|centos|redhat)
143 echo "---> RH type system detected"
144 rh_systems
145 ;;
146 ubuntu)
147 echo "---> Ubuntu system detected"
148 ubuntu_systems
149 ;;
150 *)
151 echo "---> Unknown operating system"
152 ;;
153esac
154
155# execute steps for all systems
156all_systems