Skip to content

Commit

Permalink
New CI components.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Jan 6, 2023
1 parent 1feee99 commit 939a864
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/molecule.yml
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: parse apparmor for mysql
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
- name: molecule
uses: robertdebock/molecule-action@4.0.8
uses: robertdebock/molecule-action@5.0.0
with:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
@@ -1,5 +1,5 @@
---
image: "robertdebock/github-action-molecule:4.0.8"
image: "robertdebock/github-action-molecule:5.0.0"

variables:
PY_COLORS: 1
Expand Down
20 changes: 12 additions & 8 deletions tox.ini
Expand Up @@ -2,24 +2,28 @@
# Ansible managed
#
[tox]
minversion = 3.21.4
envlist = py{310}-ansible-{5,6,7}
minversion = 4.2.4
envlist = py{310}-ansible{5,6,7}

skipsdist = true

[testenv]
deps =
5: ansible == 5.*
6: ansible == 6.*
7: ansible == 7.*
ansible5: ansible == 5.*
ansible6: ansible == 6.*
ansible7: ansible == 7.*
molecule[docker]
docker == 5.*
ansible-lint == 5.*
docker == 6.*
ansible-lint == 6.*
commands = molecule test
setenv =
TOX_ENVNAME={envname}
PY_COLORS=1
ANSIBLE_FORCE_COLOR=1
ANSIBLE_ROLES_PATH=../

passenv = namespace image tag DOCKER_HOST
passenv =
namespace
image
tag
DOCKER_HOST

0 comments on commit 939a864

Please sign in to comment.