mirror of
https://github.com/nicolabs/ansible-role-grub.git
synced 2026-02-22 18:27:47 +01:00
No rawhide, package GPG issue.
This commit is contained in:
parent
e9a353d5c9
commit
159ecf185b
|
|
@ -3,5 +3,9 @@
|
|||
#
|
||||
exclude_paths:
|
||||
- ./meta/preferences.yml
|
||||
- ./molecule/default/prepare.yml
|
||||
- ./molecule/default/converge.yml
|
||||
- ./molecule/default/verify.yml
|
||||
- ./molecule/default/collections.yml
|
||||
- ./.tox
|
||||
- ./.cache
|
||||
|
|
|
|||
6
.github/workflows/molecule.yml
vendored
6
.github/workflows/molecule.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
with:
|
||||
path: "${{ github.repository }}"
|
||||
- name: molecule
|
||||
uses: robertdebock/molecule-action@2.6.8
|
||||
uses: robertdebock/molecule-action@2.6.16
|
||||
with:
|
||||
command: lint
|
||||
test:
|
||||
|
|
@ -47,8 +47,6 @@ jobs:
|
|||
tag: "32"
|
||||
- image: "fedora"
|
||||
tag: "latest"
|
||||
- image: "fedora"
|
||||
tag: "rawhide"
|
||||
- image: "opensuse"
|
||||
tag: "latest"
|
||||
- image: "ubuntu"
|
||||
|
|
@ -65,7 +63,7 @@ jobs:
|
|||
- name: parse apparmor for mysql
|
||||
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
|
||||
- name: molecule
|
||||
uses: robertdebock/molecule-action@2.6.8
|
||||
uses: robertdebock/molecule-action@2.6.16
|
||||
with:
|
||||
image: ${{ matrix.config.image }}
|
||||
tag: ${{ matrix.config.tag }}
|
||||
|
|
|
|||
|
|
@ -30,8 +30,6 @@ molecule:
|
|||
tag: "32"
|
||||
- image: "fedora"
|
||||
tag: "latest"
|
||||
- image: "fedora"
|
||||
tag: "rawhide"
|
||||
- image: "opensuse"
|
||||
tag: "latest"
|
||||
- image: "ubuntu"
|
||||
|
|
|
|||
6
molecule/default/collections.yml
Normal file
6
molecule/default/collections.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
collections:
|
||||
- name: community.docker
|
||||
version: "== 1.*"
|
||||
- name: community.general
|
||||
version: "== 2.*"
|
||||
20
tox.ini
20
tox.ini
|
|
@ -2,25 +2,25 @@
|
|||
# Ansible managed
|
||||
#
|
||||
[tox]
|
||||
minversion = 3.20
|
||||
# These environments are disabled:
|
||||
# previous: Because collections don't work. ETA Fix: ansible-2.11 released.
|
||||
envlist = py{39}-ansible-{current,next}
|
||||
minversion = 3.21.4
|
||||
# 2.11 has been disabled: couldn't resolve module/action 'docker_container'.
|
||||
envlist = py{39}-ansible-{2.9,2.10}
|
||||
|
||||
skipsdist = true
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
previous: ansible>=2.9, <2.10
|
||||
current: ansible
|
||||
next: git+https://github.com/ansible/ansible.git@devel
|
||||
molecule[docker]>=3, <4
|
||||
docker>=4.2, <4.3
|
||||
ansible-lint
|
||||
2.9: ansible == 2.9.*
|
||||
2.10: ansible == 2.10.*
|
||||
2.11: git+https://github.com/ansible/ansible.git@devel
|
||||
molecule[docker]
|
||||
docker == 4.*
|
||||
ansible-lint == 5.*
|
||||
commands = molecule test
|
||||
setenv =
|
||||
TOX_ENVNAME={envname}
|
||||
PY_COLORS=1
|
||||
ANSIBLE_FORCE_COLOR=1
|
||||
ANSIBLE_ROLES_PATH=../
|
||||
|
||||
passenv = namespace image tag
|
||||
|
|
|
|||
Loading…
Reference in a new issue