X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=packer%2Fprovision%2Flocal-docker.yaml;h=ca9db4139db39559481e357e5c7374c4ec866028;hb=3d77696953c975d033a197186891d6c780f58be7;hp=f3af6218e44d4d71581a272f66e6bb9a06b02196;hpb=c2bf19b77cbc20302f20073e247f4c5ad1b0ba65;p=ci-management.git diff --git a/packer/provision/local-docker.yaml b/packer/provision/local-docker.yaml index f3af6218e..ca9db4139 100644 --- a/packer/provision/local-docker.yaml +++ b/packer/provision/local-docker.yaml @@ -60,21 +60,26 @@ become: true when: ansible_distribution == 'Ubuntu' - - name: Install python-tox + - name: Install python-tox and deps pip: - name: tox + name: + - tox + - tox-pyenv + - virtualenv + - more-itertools~=5.0.0 + - zipp==1.0.0 state: present become: true - apt_repository: - repo: ppa:jonathonf/python-3.6 + repo: ppa:deadsnakes/ppa state: present become: true when: ansible_distribution == 'Ubuntu' - name: Update and upgrade apt packages apt: - upgrade: yes + upgrade: 'yes' update_cache: yes become: true when: ansible_distribution == 'Ubuntu' @@ -84,13 +89,60 @@ name: - python3.6 - python3.6-dev + - python3.6-tk - libssl-dev - libmysqlclient-dev - gcc + - python3-venv + become: true + when: ansible_distribution == 'Ubuntu' + + - name: Install Python 3.7 + apt: + name: + - python3.7 + - python3.7-dev + - python3.7-tk + become: true + when: ansible_distribution == 'Ubuntu' + + - name: Install Python 3.8 + apt: + name: + - python3.8 + - python3.8-dev + - python3.8-tk + become: true + when: ansible_distribution == 'Ubuntu' + + - name: Install Python 3.9 + apt: + name: + - python3.9 + - python3.9-dev + - python3.9-tk + become: true + when: ansible_distribution == 'Ubuntu' + + - name: Install nodejs-dev libssl1.0-dev dep + apt: + name: + - libssl1.0-dev + update_cache: yes + state: fixed + become: true + when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04' + + - name: Install nodejs-dev dep for npm + apt: + name: + - nodejs-dev + update_cache: yes + state: fixed become: true when: ansible_distribution == 'Ubuntu' - - name: Install base packages + - name: Install supporting packages apt: name: - unzip @@ -98,22 +150,33 @@ - libxml-xpath-perl - wget - make - - npm - sshuttle - netcat - libssl-dev - libffi-dev - become: true - when: ansible_distribution == 'Ubuntu' - - - name: Install autorelease support packages - apt: - name: - xmlstarlet - xvfb - crudini - maven - python-ncclient + - xmlstarlet + - xvfb + - crudini + - maven + - python-ncclient + update_cache: yes + state: fixed + become: true + when: ansible_distribution == 'Ubuntu' + + - name: Install npm and addon packages + apt: + name: + - nodejs + - npm + - node-gyp + update_cache: yes + state: fixed become: true when: ansible_distribution == 'Ubuntu' @@ -152,8 +215,7 @@ - name: Install Erlang apt: - deb: https://packages.erlang-solutions.com/erlang/esl-erlang/FLAVOUR_1_general/esl-erlang_19.3.6-1~ubuntu~trusty_amd64.deb - install_recommends: yes + deb: https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_19.3.6-1~ubuntu~trusty_amd64.deb become: true when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu' @@ -209,3 +271,10 @@ state: link become: true when: ansible_architecture == 'x86_64' and ansible_distribution == 'Ubuntu' + + - name: Install jinja2 + pip: + name: jinja2 + state: present + become: true + when: ansible_architecture == 'x86_64'