blob: 78d2fa1845e82ec129df36ecd2aa32cc323c26a7 [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 \
Zack Williamscfe0b942018-04-12 11:47:57 -070058 libxml2-utils \
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080059 nodejs \
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080060 npm \
Zack Williams85249ce2018-04-01 19:54:44 -070061 python \
Zack Williams9754a832018-04-13 11:01:59 -070062 python-certifi \
63 python-cryptography \
Luca Prete31860c52018-03-06 17:54:38 -080064 python-dev \
Zack Williams9754a832018-04-13 11:01:59 -070065 python-idna \
Luca Prete31860c52018-03-06 17:54:38 -080066 python-netaddr \
Zack Williams9754a832018-04-13 11:01:59 -070067 python-openssl \
Luca Prete31860c52018-03-06 17:54:38 -080068 python-pip \
Zack Williams9754a832018-04-13 11:01:59 -070069 python-urllib3 \
Zack Williams40c06f02018-04-15 20:31:34 -070070 ruby \
Zack Williams85249ce2018-04-01 19:54:44 -070071 ssh \
Luca Prete31860c52018-03-06 17:54:38 -080072 sshpass \
Zack Williams85249ce2018-04-01 19:54:44 -070073 zip
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -080074 # end of apt-get install list
Luca Prete31860c52018-03-06 17:54:38 -080075
76 # install python modules
Zack Williams85249ce2018-04-01 19:54:44 -070077 pip install \
78 Jinja2 \
79 ansible-lint \
80 astroid \
81 docker-compose==1.20.1 \
82 docker==3.2.1 \
Luca Prete31860c52018-03-06 17:54:38 -080083 gitpython \
Luca Prete90bfa5e2018-03-06 20:41:56 -080084 graphviz \
Zack Williams85249ce2018-04-01 19:54:44 -070085 isort \
Zack Williams6828f822018-04-12 16:13:33 -070086 linkchecker \
Zack Williams85249ce2018-04-01 19:54:44 -070087 pexpect \
88 pylint \
89 pyyaml \
Luca Prete31860c52018-03-06 17:54:38 -080090 robotframework \
Kailash Khalasicb327c62018-04-03 10:41:38 -070091 robotframework-httplibrary \
Zack Williams85249ce2018-04-01 19:54:44 -070092 robotframework-requests \
Zack Williamsfd8a0042018-04-12 14:34:17 -070093 robotframework-sshlibrary \
94 virtualenv
Zack Williams85249ce2018-04-01 19:54:44 -070095 # end of pip install list
Luca Prete31860c52018-03-06 17:54:38 -080096
Zack Williams40c06f02018-04-15 20:31:34 -070097 # install ruby gems
98 gem install \
99 mdl
100 # end of gem install list
101
Luca Prete31860c52018-03-06 17:54:38 -0800102 # install npm modules
103 npm install -g \
Zack Williams85249ce2018-04-01 19:54:44 -0700104 gitbook-cli \
105 markdownlint \
Luca Prete31860c52018-03-06 17:54:38 -0800106 typings
Zack Williams85249ce2018-04-01 19:54:44 -0700107 # end of npm install list
Luca Prete31860c52018-03-06 17:54:38 -0800108
Zack Williams6828f822018-04-12 16:13:33 -0700109 # ubuntu 16.04 installs the node binary as /usr/bin/nodejs, which breaks
110 # tools that expect it to be named just `node`. Symlink it to fix
111 ln -s /usr/bin/nodejs /usr/local/bin/node
112
Luca Prete31860c52018-03-06 17:54:38 -0800113 # install repo
Zack Williams85249ce2018-04-01 19:54:44 -0700114 REPO_SHA256SUM="394d93ac7261d59db58afa49bb5f88386fea8518792491ee3db8baab49c3ecda"
Luca Prete31860c52018-03-06 17:54:38 -0800115 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 -0700116 echo "$REPO_SHA256SUM /tmp/repo" | sha256sum -c -
117 mv /tmp/repo /usr/local/bin/repo
118 chmod a+x /usr/local/bin/repo
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800119
Zack Williams85249ce2018-04-01 19:54:44 -0700120 # install sonarqube scanner
121 SONAR_SCANNER_CLI_VERSION="3.1.0.1141"
122 SONAR_SCANNER_CLI_SHA256SUM="efbe7d1a274bbed220846eccc5b36db853a6bab3ee576aebf93ddc604a89ced4"
123 curl -L -o /tmp/sonarscanner.zip https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_CLI_VERSION}-linux.zip
124 echo "$SONAR_SCANNER_CLI_SHA256SUM /tmp/sonarscanner.zip" | sha256sum -c -
125 pushd /opt
126 unzip /tmp/sonarscanner.zip
127 mv sonar-scanner-${SONAR_SCANNER_CLI_VERSION}-linux sonar-scanner
128 popd
129
Zack Williams8aa52822018-04-05 09:22:15 -0700130 # install helm (for lint)
131 HELM_VERSION="2.8.2"
132 HELM_SHA256SUM="614b5ac79de4336b37c9b26d528c6f2b94ee6ccacb94b0f4b8d9583a8dd122d3"
133 HELM_PLATFORM="linux-amd64"
134 curl -L -o /tmp/helm.tgz https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-${HELM_PLATFORM}.tar.gz
135 echo "$HELM_SHA256SUM /tmp/helm.tgz" | sha256sum -c -
136 pushd /tmp
137 tar -xzvf helm.tgz
138 mv ${HELM_PLATFORM}/helm /usr/local/bin/helm
139 chmod a+x /usr/local/bin/helm
140 popd
141
Zack Williams85249ce2018-04-01 19:54:44 -0700142 # clean up
143 apt-get clean
144 apt-get purge -y
145 apt-get autoremove -y
146 rm -rf /var/lib/apt/lists/*
147 rm -rf /var/cache/oracle-jdk8-installer
148 rm -rf /tmp/sonarscanner.zip
Zack Williams8aa52822018-04-05 09:22:15 -0700149 rm -rf /tmp/helm.tgz
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800150}
Zack Williams85249ce2018-04-01 19:54:44 -0700151
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800152all_systems() {
153 echo 'No common distribution configuration to perform'
154}
155
156echo "---> Detecting OS"
157ORIGIN=$(facter operatingsystem | tr '[:upper:]' '[:lower:]')
158
159case "${ORIGIN}" in
160 fedora|centos|redhat)
161 echo "---> RH type system detected"
162 rh_systems
163 ;;
164 ubuntu)
165 echo "---> Ubuntu system detected"
166 ubuntu_systems
167 ;;
168 *)
169 echo "---> Unknown operating system"
170 ;;
171esac
172
173# execute steps for all systems
174all_systems