Move build-essential arm64 things to base

The "there's no wheel for that" problem is a pretty generic thing on
arm64 nodes; also install the basic builder packages to during base so
it applies to all arm64 servers.

Change-Id: Ib420001de673f4d8f935be9b97f7d16818195cd5
This commit is contained in:
Ian Wienand 2020-05-07 14:58:20 +10:00
parent d58fcd30d9
commit a46422838d

View File

@ -75,3 +75,12 @@
dest: /etc/apt/apt.conf.d/50unattended-upgrades
owner: root
group: root
- name: Ensure required build packages for non-wheel architectures
apt:
update_cache: yes
name:
- libffi-dev
- libssl-dev
- build-essential
when: ansible_architecture == 'aarch64'