From 0473ac9fcc8a8f7d4d94d1db8d2ecf3ad8fd75c9 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Thu, 23 Jul 2020 11:22:35 -0500 Subject: [PATCH] Issue #167: Try Ansible's stable release. --- .github/workflows/ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e2e4f07..f28eef96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,12 +84,14 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install molecule and openshift dependencies - run: pip install molecule yamllint openshift flake8 + run: pip install ansible molecule yamllint openshift flake8 - - name: Install ansible base, latest release. - run: | - pip uninstall -y ansible - pip install --pre ansible-base + # The latest release doesn't work with Molecule currently. + # See: https://github.com/ansible-community/molecule/issues/2757 + # - name: Install ansible base, latest release. + # run: | + # pip uninstall -y ansible + # pip install --pre ansible-base # The devel branch doesn't work with Molecule currently. # See: https://github.com/ansible-community/molecule/issues/2757