Refactor pipeline
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/publish Pipeline was successful Details

This commit is contained in:
Santiago Lo Coco 2024-04-15 19:10:26 +02:00
parent 77af086854
commit 4809db788c
4 changed files with 63 additions and 53 deletions

View File

@ -1,53 +0,0 @@
when:
branch: master
steps:
ansible-lint:
image: alpine/git
commands:
- apk add ansible ansible-lint
- export ANSIBLE_COLLECTION=slococo/playground
- ansible-galaxy collection install -r "$ANSIBLE_COLLECTION"/requirements.yml
- ansible-lint
- ansible-galaxy collection install "$ANSIBLE_COLLECTION"
- ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check
molecule:
image: docker:dind
commands:
- apk add --no-cache python3 python3-dev py3-pip gcc git curl build-base autoconf automake
- apk add --no-cache py3-cryptography linux-headers musl-dev libffi-dev openssl-dev openssh
- python3 -m pip config set global.break-system-packages true
- python3 -m pip install ansible molecule molecule-plugins[docker] docker
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- molecule test
volumes:
- /var/run/docker.sock:/var/run/docker.sock
build:
image: alpine/git
commands:
- apk add ansible
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- ansible-galaxy collection build
when:
event: tag
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.slc.ar
files:
- "slococo-playground-${CI_COMMIT_TAG##v}.tar.gz"
api_key:
from_secret: FORGEJO_ACCESS_TOKEN
target: master
when:
event: tag
services:
dind:
image: docker:dind
privileged: true

13
.woodpecker/.lint.yaml Normal file
View File

@ -0,0 +1,13 @@
when:
branch: master
steps:
ansible-lint:
image: alpine/git
commands:
- apk add ansible ansible-lint
- export ANSIBLE_COLLECTION=slococo/playground
- ansible-galaxy collection install -r "$ANSIBLE_COLLECTION"/requirements.yml
- ansible-lint
- ansible-galaxy collection install "$ANSIBLE_COLLECTION"
- ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check

29
.woodpecker/.publish.yaml Normal file
View File

@ -0,0 +1,29 @@
when:
branch: master
steps:
build:
image: alpine/git
commands:
- apk add ansible
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- ansible-galaxy collection build --output-path "$CI_WORKSPACE"
when:
event: tag
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.slc.ar
files:
- "slococo-playground-${CI_COMMIT_TAG##v}.tar.gz"
api_key:
from_secret: FORGEJO_ACCESS_TOKEN
target: master
when:
event: tag
depends_on:
- lint
- test

21
.woodpecker/.test.yaml Normal file
View File

@ -0,0 +1,21 @@
when:
branch: master
steps:
molecule:
image: docker:dind
commands:
- apk add --no-cache python3 python3-dev py3-pip gcc git curl build-base autoconf automake
- apk add --no-cache py3-cryptography linux-headers musl-dev libffi-dev openssl-dev openssh
- python3 -m pip config set global.break-system-packages true
- python3 -m pip install ansible molecule molecule-plugins[docker] docker
- export ANSIBLE_COLLECTION=slococo/playground
- cd "$ANSIBLE_COLLECTION"
- molecule test
volumes:
- /var/run/docker.sock:/var/run/docker.sock
services:
dind:
image: docker:dind
privileged: true