Skip to content

Commit

Permalink
Merge pull request #250 from RanabirChakraborty/ci_fix
Browse files Browse the repository at this point in the history
SET-771 Implementing the CI fix
  • Loading branch information
spyrkob authored May 23, 2024
2 parents 67253fb + 77d62c3 commit 6868387
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 44 deletions.
42 changes: 8 additions & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,60 +12,34 @@ jobs:
name: molecule
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.11']

steps:
- name: Checkout the codebase.
uses: actions/checkout@v2

- name: Set up Python3.
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: ${{ matrix.python_version }}

- name: Install testing dependencies.
run: |
python -m pip install --upgrade pip
pip install yamllint 'molecule>=4.0.4' 'molecule-plugins[podman]>=23.0.0' ansible-core flake8 ansible-lint voluptuous
pip install yamllint 'molecule>=6.0.3' 'molecule-plugins[podman]>=23.0.0' 'ansible-core<2.16' flake8 ansible-lint voluptuous
ansible-galaxy collection install -r requirements.yml
- name: Run linter
run: |
ansible-lint --version
ansible-lint -v
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'

- name: Install ansible and molecule
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
retry_wait_seconds: 60
max_attempts: 3
command: |
python -m pip install --upgrade pip
pip install --progress-bar off 'molecule>=5.0.1' 'molecule-plugins[docker]>=23.0.0' ansible-core==${{ matrix.ansible_version }}
if [ -f ansible_collections/${{ inputs.fqcn }}/requirements.txt ]; then
echo "=== Installing python deps"
pip install --progress-bar off -r ansible_collections/${{ inputs.fqcn }}/requirements.txt
fi
if [ -f ansible_collections/${{ inputs.fqcn }}/requirements.yml ]; then
echo "=== Installing dependencies"
ansible-galaxy collection install -r ansible_collections/${{ inputs.fqcn }}/requirements.yml -p /home/runner/.ansible/collections --force-with-deps
fi
if [ -f ansible_collections/${{ inputs.fqcn }}/molecule/requirements.yml ]; then
echo "=== Installing test dependencies"
ansible-galaxy role install -r ansible_collections/${{ inputs.fqcn }}/molecule/requirements.yml ||:
ansible-galaxy collection install -r ansible_collections/${{ inputs.fqcn }}/molecule/requirements.yml -p /home/runner/.ansible/collections
fi
exit 0
- name: "Run molecule tests"
run: molecule test --all
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: rhel-8
MOLECULE_DISTRO: rhel-9
working-directory: '.'
5 changes: 0 additions & 5 deletions molecule/account/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ platforms:
- sudo
provisioner:
name: ansible
config_options:
defaults:
interpreter_python: auto_silent
ssh_connection:
pipelining: false
playbooks:
prepare: prepare.yml
converge: converge.yml
Expand Down
5 changes: 0 additions & 5 deletions molecule/cron/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ platforms:
- sudo
provisioner:
name: ansible
config_options:
defaults:
interpreter_python: auto_silent
ssh_connection:
pipelining: false
playbooks:
converge: converge.yml
verify: verify.yml
Expand Down

0 comments on commit 6868387

Please sign in to comment.