Merge "Add dev packages on arm64 for docker-compose installation"

This commit is contained in:
Zuul 2020-09-08 22:09:11 +00:00 committed by Gerrit Code Review
commit dc1d14eab0

View File

@ -17,6 +17,20 @@
# We install docker-compose from pypi to get features like
# stop_grace_period.
# On arm64 we need build-essential, python3-dev, libffi-dev, and libssl-dev
# because wheels don't exist for all the things on arm64
- name: Install arm64 dev pacakges
when: ansible_architecture == 'aarch64'
package:
name:
- build-essential
- python3-dev
- libffi-dev
- libssl-dev
state: present
- name: ensure pip3 is installed
include_role:
name: pip3