0.1.12-DEV-20191108-093644

--------------------------
    * MODIFY:
      - modifying .gitlab-ci.yml a bit to see if we cant
        clean it up and make it work a little better
This commit is contained in:
Chris Hammer 2019-11-08 09:37:16 -05:00
parent 82881055a0
commit 6b81563739

View File

@ -20,27 +20,20 @@ variables:
stages:
- check_versions
- lint_playbook
- check_and_lint
- test_deploy
### BEGIN TEMPLATES ###
.tags_template: &tags_template
.header_template: &header
tags:
- zen-ci-deb-workstation
.zen_ci_deb_template: &zen_ci_deb_template
variables:
DOCKER_IMG_TAG: "latest"
.check_version_template: &check_version_template
<<: *tags_template
stage: check_versions
only:
- development
.check_versions_template: &check_vers
stage: check_and_lint
script:
- /bin/hostname
- "cd ${CI_PROJECT_DIR} && git log -1"
@ -48,20 +41,14 @@ stages:
- "ansible-lint --version"
.lint_playbook_template: &lint_playbook_template
<<: *tags_template
stage: lint_playbook
only:
- development
.lint_play_template: &lint_play
stage: check_and_lint
script:
- "ansible-lint -v ${ANSIBLE_ROLE_PATH}"
.test_deploy_template: &test_deploy_template
<<: *tags_template
.test_deploy_template: &test_deploy
stage: test_deploy
only:
- development
script:
- cp -av ${ANSIBLE_ROLE_PATH} /etc/ansible/roles/${ANSIBLE_ROLE}
- ansible-playbook -v --connection=local ${ANSIBLE_EXTRA_VARS} tests/test.yml
@ -72,17 +59,17 @@ stages:
### BEGIN JOBS ###
Check Versioning Info:
<<: *zen_ci_deb_template
<<: *check_version_template
Version Checks:
<<: *header
<<: *check_vers
Lint Playbook:
<<: *zen_ci_deb_template
<<: *lint_playbook_template
Lint Play:
<<: *header
<<: *lint_play
Test Deploy:
<<: *zen_ci_deb_template
<<: *test_deploy_template
<<: *header
<<: *test_deploy
### END JOBS ###