0.1.0-DEV-20191030-150338

-------------------------
    * MODIFY:
      - modified .gitlab-ci.yml to use our newly created debian based ci image;
        this commit will kick off the first test of both the image and the .gitlab-ci.yml setup
This commit is contained in:
Chris Hammer 2019-10-30 15:04:58 -04:00
parent 0ca9256b3c
commit c09c103b6b

View File

@ -28,12 +28,12 @@ stages:
### BEGIN TEMPLATES ### ### BEGIN TEMPLATES ###
.tags_template: &tags_template .tags_template: &tags_template
tags: tags:
- zen-ci-workstation - zen-ci-deb-workstation
.centos_7_template: &centos_7_template .zen_ci_deb_template: &zen_ci_deb_template
variables: variables:
DOCKER_IMG_TAG: "7.6.1810" DOCKER_IMG_TAG: "latest"
.check_version_template: &check_version_template .check_version_template: &check_version_template
@ -63,24 +63,23 @@ stages:
only: only:
- development - development
script: script:
- echo "Copy ${ANSIBLE_ROLE_PATH} into global roles directory..." - cp -av ${ANSIBLE_ROLE_PATH} /etc/ansible/roles/${ANSIBLE_ROLE}
- cp -a ${ANSIBLE_ROLE_PATH} /etc/ansible/roles/${ANSIBLE_ROLE}
- ansible-playbook -v --connection=local ${ANSIBLE_EXTRA_VARS} tests/test.yml - ansible-playbook -v --connection=local ${ANSIBLE_EXTRA_VARS} tests/test.yml
### END TEMPLATES ### ### END TEMPLATES ###
### BEGIN JOBS ### ### BEGIN JOBS ###
Check Versioning Info:7: Check Versioning Info:7:
<<: *centos_7_template <<: *zen_ci_deb_template
<<: *check_version_template <<: *check_version_template
Lint_Playbook:7: Lint_Playbook:7:
<<: *centos_7_template <<: *zen_ci_deb_template
<<: *lint_playbook_template <<: *lint_playbook_template
Test_Deploy:7: Test_Deploy:7:
<<: *centos_7_template <<: *zen_ci_deb_template
<<: *test_deploy_template <<: *test_deploy_template
### END JOBS ### ### END JOBS ###