ci: switch to molecule v4
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2022-12-21 09:14:30 +01:00
parent 6e15745a81
commit b5b64f5f55
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 9 additions and 9 deletions

View File

@ -15,18 +15,18 @@ local PipelineLinting = {
},
{
name: 'python-format',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq yapf',
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
],
},
{
name: 'python-flake8',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
@ -58,7 +58,7 @@ local PipelineDeployment(scenario='centos7') = {
steps: [
{
name: 'ansible-molecule',
image: 'thegeeklab/molecule:3',
image: 'thegeeklab/molecule:4',
environment: {
HCLOUD_TOKEN: { from_secret: 'hcloud_token' },
},

View File

@ -13,15 +13,15 @@ steps:
- ansible-later
- name: python-format
image: python:3.10
image: python:3.11
commands:
- pip install -qq yapf
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
environment:
PY_COLORS: 1
- name: python-flake8
image: python:3.10
image: python:3.11
commands:
- pip install -qq flake8
- flake8
@ -51,7 +51,7 @@ workspace:
steps:
- name: ansible-molecule
image: thegeeklab/molecule:3
image: thegeeklab/molecule:4
commands:
- molecule test -s centos7
environment:
@ -147,6 +147,6 @@ depends_on:
---
kind: signature
hmac: 3077f6811b244bdbfacdd4a92b719ffaa02bfcadeb7ed0e32e23c3fd32be82fa
hmac: 6bf6ca7112cd50d7b1b2a8c4f6facfa55a5e3d2240b684760a369319fc9fc032
...