From 4809db788c456ee5036aa526a5ec0dea179343b2 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 15 Apr 2024 19:10:26 +0200 Subject: [PATCH] Refactor pipeline --- .woodpecker.yml | 53 --------------------------------------- .woodpecker/.lint.yaml | 13 ++++++++++ .woodpecker/.publish.yaml | 29 +++++++++++++++++++++ .woodpecker/.test.yaml | 21 ++++++++++++++++ 4 files changed, 63 insertions(+), 53 deletions(-) delete mode 100644 .woodpecker.yml create mode 100644 .woodpecker/.lint.yaml create mode 100644 .woodpecker/.publish.yaml create mode 100644 .woodpecker/.test.yaml diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index a0021dd..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -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 diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml new file mode 100644 index 0000000..78cdf06 --- /dev/null +++ b/.woodpecker/.lint.yaml @@ -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 diff --git a/.woodpecker/.publish.yaml b/.woodpecker/.publish.yaml new file mode 100644 index 0000000..4a437bb --- /dev/null +++ b/.woodpecker/.publish.yaml @@ -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 diff --git a/.woodpecker/.test.yaml b/.woodpecker/.test.yaml new file mode 100644 index 0000000..f083c4f --- /dev/null +++ b/.woodpecker/.test.yaml @@ -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