0.1.39-DEV-20201103-003349

--------------------------
    * ADD:
      - add build support stage for centos: BETA!
This commit is contained in:
2020-11-04 00:34:12 -05:00
parent 7fc577b27b
commit 817ad2f64a

View File

@ -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: &centos_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 ###