teste die pipeline #1

Merged
smartika merged 2 commits from flip_dev into main 2025-12-16 08:01:38 +00:00
Showing only changes of commit af3da06f8d - Show all commits

33
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,33 @@
---
stages:
- build
- lint
- test
- deploy
before_script:
- ansible --version
- ansible-lint --version
- yamllint --version
- molecule --version
lint:
script:
echo "test test test"
# lint:
# stage: lint
# image: quay.io/ansible/ansible-runner:latest
# before_script:
# - pip install ansible ansible-lint
# script:
# - ansible-lint playbooks/
# rules:
# - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
# - changes:
# - "**/*.yml"
# - "**/*.yaml"
# - "roles/**/*"