Merge "[CDS-MOCK-SERVER] Add linter"
[ci-management.git] / packer / provision / local-docker.yaml
1 ---
2 - import_playbook: ../common-packer/provision/docker.yaml
3
4 - hosts: all
5   become_user: root
6   become_method: sudo
7   vars:
8     apt_file: /etc/apt/sources.list.d/google-chrome.list
9     docker_compose_version: 1.17.1
10     glide_checksum: sha256:c403933503ea40308ecfadcff581ff0dc3190c57958808bb9eed016f13f6f32c
11     glide_version: v0.13.1
12     golang_version: 1.9.1
13
14   tasks:
15     - name: "Checking for x86_64"
16       set_fact:
17         host_arch: "amd64"
18         golang_checksum: sha256:07d81c6b6b4c2dcf1b5ef7c27aaebd3691cdb40548500941f92b221147c5d9c7
19       when: "'x86_64' in ansible_architecture"
20
21     - name: "Checking for aarch64"
22       set_fact:
23         host_arch: "arm64"
24         golang_checksum: sha256:d31ecae36efea5197af271ccce86ccc2baf10d2e04f20d0fb75556ecf0614dad
25       when: "'aarch64' in ansible_architecture"
26
27     - name: 'Install Docker Compose {{docker_compose_version}}'
28       command: curl -o /usr/local/bin/docker-compose -L "https://github.com/docker/compose/releases/download/{{docker_compose_version}}/docker-compose-Linux-x86_64"
29       become: true
30
31     - file:
32         path: /usr/local/bin/docker-compose
33         mode: "+x"
34       become: true
35
36     - name: 'Install GoLang {{golang_version}}'
37       block:
38         - name: 'Fetch golang {{golang_version}} to /tmp/go{{golang_version}}.linux-{{host_arch}}.tar.gz'
39           get_url:
40             url: 'https://storage.googleapis.com/golang/go{{golang_version}}.linux-{{host_arch}}.tar.gz'
41             dest: '/tmp/go{{golang_version}}.linux-{{host_arch}}.tar.gz'
42             checksum: '{{golang_checksum}}'
43         - name: 'Install golang {{golang_version}} to /usr/local'
44           unarchive:
45             src: '/tmp/go{{golang_version}}.linux-{{host_arch}}.tar.gz'
46             dest: /usr/local
47             remote_src: true
48           become: true
49         - name: Create symbolic link to go bin
50           file:
51             src: "/usr/local/go/bin/go"
52             dest: "/usr/bin/go"
53             state: link
54           become: true
55
56     - name: Install libxml2-utils
57       apt:
58         name: libxml2-utils
59         state: present
60       become: true
61       when: ansible_distribution == 'Ubuntu'
62
63     - name: Install python-tox and deps
64       pip:
65         name:
66           - tox
67           - tox-pyenv
68           - virtualenv
69           - more-itertools~=5.0.0
70           - zipp==1.0.0
71         state: present
72       become: true
73
74     - apt_repository:
75         repo: ppa:deadsnakes/ppa
76         state: present
77       become: true
78       when: ansible_distribution == 'Ubuntu'
79
80     - name: Update and upgrade apt packages
81       apt:
82         upgrade: 'yes'
83         update_cache: yes
84       become: true
85       when: ansible_distribution == 'Ubuntu'
86
87     - name: Install Python 3.6 and packages
88       apt:
89         name:
90           - python3.6
91           - python3.6-dev
92           - python3.6-tk
93           - libssl-dev
94           - libmysqlclient-dev
95           - gcc
96           - python3-venv
97       become: true
98       when: ansible_distribution == 'Ubuntu'
99
100     - name: Install Python 3.7
101       apt:
102         name:
103           - python3.7
104           - python3.7-dev
105           - python3.7-tk
106       become: true
107       when: ansible_distribution == 'Ubuntu'
108
109     - name: Install Python 3.8
110       apt:
111         name:
112           - python3.8
113           - python3.8-dev
114           - python3.8-tk
115       become: true
116       when: ansible_distribution == 'Ubuntu'
117
118     - name: Install Python 3.9
119       apt:
120         name:
121           - python3.9
122           - python3.9-dev
123           - python3.9-tk
124           - python3.9-distutils
125       become: true
126       when: ansible_distribution == 'Ubuntu'
127
128     - name: Install nodejs-dev libssl1.0-dev dep
129       apt:
130         name:
131           - libssl1.0-dev
132         update_cache: yes
133         state: fixed
134       become: true
135       when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04'
136
137     - name: Install nodejs-dev dep for npm
138       apt:
139         name:
140           - nodejs-dev
141         update_cache: yes
142         state: fixed
143       become: true
144       when: ansible_distribution == 'Ubuntu'
145
146     - name: Install supporting packages
147       apt:
148         name:
149           - unzip
150           - xz-utils
151           - libxml-xpath-perl
152           - wget
153           - make
154           - sshuttle
155           - netcat
156           - libssl-dev
157           - libffi-dev
158           - xmlstarlet
159           - xvfb
160           - crudini
161           - maven
162           - python-ncclient
163           - xmlstarlet
164           - xvfb
165           - crudini
166           - maven
167           - python-ncclient
168         update_cache: yes
169         state: fixed
170       become: true
171       when: ansible_distribution == 'Ubuntu'
172
173     - name: Install npm and addon packages
174       apt:
175         name:
176           - nodejs
177           - npm
178           - node-gyp
179         update_cache: yes
180         state: fixed
181       become: true
182       when: ansible_distribution == 'Ubuntu'
183
184     - name: Add Google Chrome key
185       apt_key:
186         url: https://dl-ssl.google.com/linux/linux_signing_key.pub
187         state: present
188       become: true
189       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
190
191     - name: Add Google Chrome repo
192       copy: content="deb http://dl.google.com/linux/chrome/deb/ stable main" dest={{apt_file}} owner=root group=root mode=644
193       become: true
194       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
195
196     - name: Update apt cache
197       apt: update_cache=yes
198       become: true
199       when: ansible_distribution == 'Ubuntu'
200
201     - name: Install Google Chrome
202       apt:
203         name: google-chrome-stable
204         state: present
205       become: true
206       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
207
208     - name: Install Erlang dependency packages
209       apt:
210         name:
211           - libwxgtk3.0-0v5
212           - libsctp1
213           - libwxbase3.0-0v5
214       become: true
215       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
216
217     - name: Install Erlang
218       apt:
219         deb: https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_19.3.6-1~ubuntu~trusty_amd64.deb
220       become: true
221       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
222
223     - name: Clone rebar3
224       git:
225         repo: 'https://github.com/erlang/rebar3.git'
226         dest: /tmp/rebar3
227       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
228
229     - name: Bootstrap rebar3
230       command: ./bootstrap
231       args:
232         chdir: /tmp/rebar3
233       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
234
235     - name: Install rebar3 to bin
236       copy:
237         src: /tmp/rebar3/rebar3
238         dest: /usr/bin/rebar3
239         mode: 0755
240         remote_src: true
241       become: true
242       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
243
244     - name: Remove unused rebar3 source
245       file:
246         path: /tmp/rebar3
247         state: absent
248       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
249
250     - name: Download geckodriver
251       unarchive:
252         src: https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-linux64.tar.gz
253         dest: /usr/bin
254         mode: 0755
255         remote_src: yes
256       become: true
257       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
258
259     - name: Download Firefox version 55.0.3
260       unarchive:
261         src: https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/linux-x86_64/en-US/firefox-55.0.3.tar.bz2
262         dest: /opt
263         mode: 0755
264         remote_src: yes
265       become: true
266       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
267
268     - name: Create symbolic link to firefox bin
269       file:
270         src: "/opt/firefox/firefox"
271         dest: "/usr/bin/firefox"
272         state: link
273       become: true
274       when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu'
275
276     - name: Install jinja2
277       pip:
278         name: jinja2
279         state: present
280       become: true
281       when: ansible_architecture == 'x86_64'