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 ### ### BEGIN TEMPLATES ###
.header_template: &header .deb_header_template: &deb_header
tags: tags:
- zen-ci-deb-workstation - zen-ci-deb-workstation
only: only:
- development - development
.centos_header_template: &centos_header
tags:
- zen-ci-workstation
only:
- development
.check_versions_template: &check_vers .check_versions_template: &check_vers
stage: check_and_lint stage: check_and_lint
script: script:
@ -60,16 +67,21 @@ stages:
### BEGIN JOBS ### ### BEGIN JOBS ###
Version Checks: Version Checks:
<<: *header <<: *deb_header
<<: *check_vers <<: *check_vers
Lint Play: Lint Play:
<<: *header <<: *deb_header
<<: *lint_play <<: *lint_play
Test Deploy: Test Deploy - Debian:
<<: *header <<: *deb_header
<<: *test_deploy
Test Deploy - CentOS:
<<: *centos_header
<<: *test_deploy <<: *test_deploy
### END JOBS ### ### END JOBS ###