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:
|
exclude_paths:
|
||||||
- ./meta/preferences.yml
|
- ./meta/preferences.yml
|
||||||
|
- ./molecule/default/prepare.yml
|
||||||
|
- ./molecule/default/converge.yml
|
||||||
- ./molecule/default/verify.yml
|
- ./molecule/default/verify.yml
|
||||||
|
- ./molecule/default/collections.yml
|
||||||
- ./.tox
|
- ./.tox
|
||||||
|
- ./.cache
|
||||||
|
|
|
||||||
6
.github/workflows/molecule.yml
vendored
6
.github/workflows/molecule.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: "${{ github.repository }}"
|
path: "${{ github.repository }}"
|
||||||
- name: molecule
|
- name: molecule
|
||||||
uses: robertdebock/molecule-action@2.6.8
|
uses: robertdebock/molecule-action@2.6.16
|
||||||
with:
|
with:
|
||||||
command: lint
|
command: lint
|
||||||
test:
|
test:
|
||||||
|
|
@ -47,8 +47,6 @@ jobs:
|
||||||
tag: "32"
|
tag: "32"
|
||||||
- image: "fedora"
|
- image: "fedora"
|
||||||
tag: "latest"
|
tag: "latest"
|
||||||
- image: "fedora"
|
|
||||||
tag: "rawhide"
|
|
||||||
- image: "opensuse"
|
- image: "opensuse"
|
||||||
tag: "latest"
|
tag: "latest"
|
||||||
- image: "ubuntu"
|
- image: "ubuntu"
|
||||||
|
|
@ -65,7 +63,7 @@ jobs:
|
||||||
- name: parse apparmor for mysql
|
- name: parse apparmor for mysql
|
||||||
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
|
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
|
||||||
- name: molecule
|
- name: molecule
|
||||||
uses: robertdebock/molecule-action@2.6.8
|
uses: robertdebock/molecule-action@2.6.16
|
||||||
with:
|
with:
|
||||||
image: ${{ matrix.config.image }}
|
image: ${{ matrix.config.image }}
|
||||||
tag: ${{ matrix.config.tag }}
|
tag: ${{ matrix.config.tag }}
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,6 @@ molecule:
|
||||||
tag: "32"
|
tag: "32"
|
||||||
- image: "fedora"
|
- image: "fedora"
|
||||||
tag: "latest"
|
tag: "latest"
|
||||||
- image: "fedora"
|
|
||||||
tag: "rawhide"
|
|
||||||
- image: "opensuse"
|
- image: "opensuse"
|
||||||
tag: "latest"
|
tag: "latest"
|
||||||
- image: "ubuntu"
|
- 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
|
# Ansible managed
|
||||||
#
|
#
|
||||||
[tox]
|
[tox]
|
||||||
minversion = 3.20
|
minversion = 3.21.4
|
||||||
# These environments are disabled:
|
# 2.11 has been disabled: couldn't resolve module/action 'docker_container'.
|
||||||
# previous: Because collections don't work. ETA Fix: ansible-2.11 released.
|
envlist = py{39}-ansible-{2.9,2.10}
|
||||||
envlist = py{39}-ansible-{current,next}
|
|
||||||
|
|
||||||
skipsdist = true
|
skipsdist = true
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
previous: ansible>=2.9, <2.10
|
2.9: ansible == 2.9.*
|
||||||
current: ansible
|
2.10: ansible == 2.10.*
|
||||||
next: git+https://github.com/ansible/ansible.git@devel
|
2.11: git+https://github.com/ansible/ansible.git@devel
|
||||||
molecule[docker]>=3, <4
|
molecule[docker]
|
||||||
docker>=4.2, <4.3
|
docker == 4.*
|
||||||
ansible-lint
|
ansible-lint == 5.*
|
||||||
commands = molecule test
|
commands = molecule test
|
||||||
setenv =
|
setenv =
|
||||||
TOX_ENVNAME={envname}
|
TOX_ENVNAME={envname}
|
||||||
PY_COLORS=1
|
PY_COLORS=1
|
||||||
ANSIBLE_FORCE_COLOR=1
|
ANSIBLE_FORCE_COLOR=1
|
||||||
|
ANSIBLE_ROLES_PATH=../
|
||||||
|
|
||||||
passenv = namespace image tag
|
passenv = namespace image tag
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue