You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
507 B
16 lines
507 B
pipeline: |
|
build: |
|
image: alpine:3.15 |
|
commands: |
|
- apk --update add ansible |
|
- ansible-galaxy collection build |
|
|
|
sanity: |
|
image: alpine:3.15 |
|
commands: |
|
- apk --update add ansible py3-requests py3-pycodestyle py3-pylint py3-voluptuous yamllint |
|
- mkdir -p /ansible_collections/markuman/devops |
|
- mkdir -p /root/.cache/pylint |
|
- cp -a * /ansible_collections/markuman/devops |
|
- cd /ansible_collections/markuman/devops && ansible-test sanity --python 3.9 |
|
|