From b3f006d71649cbe1abc67daf1408a5c48ca73159 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Thu, 30 Apr 2020 19:50:57 -0400 Subject: [PATCH] Add tests for CentOS 8 and Ubunt 18.04 These other are supported or appear to be so we should make sure to also test them. This also adds zlib1g-dev to ensure that Ubuntu 18.04 picks it up as it appears to be missing in test builds. Change-Id: I0068eb99254b5f7f651fee77178d9615a69e3d45 Signed-off-by: Thanh Ha --- molecule/default/molecule.yml | 4 ++++ molecule/default/prepare.yml | 1 + 2 files changed, 5 insertions(+) diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml index 965555b..56d1c7d 100644 --- a/molecule/default/molecule.yml +++ b/molecule/default/molecule.yml @@ -10,8 +10,12 @@ lint: | platforms: - name: centos7 image: centos:7 + - name: centos8 + image: centos:8 - name: ubuntu1604 image: ubuntu:16.04 + - name: ubuntu1804 + image: ubuntu:18.04 - name: ubuntu2004 image: ubuntu:20.04 provisioner: diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml index 824813c..a80cccc 100644 --- a/molecule/default/prepare.yml +++ b/molecule/default/prepare.yml @@ -38,6 +38,7 @@ - make - libssl-dev - wget + - zlib1g-dev state: present when: ansible_distribution == 'Ubuntu' become: true -- 2.16.6