From 817ad2f64ae92cb3edf384dd15eb1a3f963cee64 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Wed, 4 Nov 2020 00:34:12 -0500 Subject: [PATCH] 0.1.39-DEV-20201103-003349 -------------------------- * ADD: - add build support stage for centos: BETA! --- .gitlab-ci.yml | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a11454..2525563 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,13 +25,20 @@ stages: ### BEGIN TEMPLATES ### -.header_template: &header +.deb_header_template: &deb_header tags: - zen-ci-deb-workstation only: - development +.centos_header_template: ¢os_header + tags: + - zen-ci-workstation + only: + - development + + .check_versions_template: &check_vers stage: check_and_lint script: @@ -60,16 +67,21 @@ stages: ### BEGIN JOBS ### Version Checks: - <<: *header + <<: *deb_header <<: *check_vers Lint Play: - <<: *header + <<: *deb_header <<: *lint_play -Test Deploy: - <<: *header +Test Deploy - Debian: + <<: *deb_header + <<: *test_deploy + + +Test Deploy - CentOS: + <<: *centos_header <<: *test_deploy ### END JOBS ###