From 25a661157e295aa8331d1860dbe87515ac454963 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Wed, 31 Mar 2021 11:25:12 -0500 Subject: [PATCH] Allow failure on snap-based install since containerization makes that hard to test. --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 185dae7..64ed25a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,16 +43,23 @@ jobs: include: - distro: centos8 playbook: converge.yml + experimental: 'false' - distro: centos7 playbook: converge.yml + experimental: 'false' - distro: ubuntu1804 playbook: converge.yml + experimental: 'false' - distro: debian10 playbook: converge.yml + experimental: 'false' - distro: centos7 playbook: playbook-source-install.yml + experimental: 'false' + - distro: centos7 playbook: playbook-snap-install.yml + experimental: 'true' steps: - name: Check out the codebase. @@ -70,6 +77,7 @@ jobs: - name: Run Molecule tests. run: molecule test + continue-on-error: ${{ matrix.experimental }} env: PY_COLORS: '1' ANSIBLE_FORCE_COLOR: '1'