Newer
Older
before_script:
- "source ~gitlab-runner/cicd_support/cicd_support.shinc"
stages:
- clean
- build
- test
#
# Cleaning
#
.do-nightly-clean: &do-nightly-clean
stage: clean
script:
- ./cicd_testing/do-clean.sh
do-nightly-clean-ubuntu18:
<<: *do-nightly-clean
do-nightly-clean-ubuntu16:
<<: *do-nightly-clean
tags:
- ubuntu16
do-nightly-clean-centos75:
<<: *do-nightly-clean
tags:
- centos75
# template
.do-build: &do-build
stage: build
# per os items
do-build-ubuntu18:
<<: *do-build

Jason Hiser
committed
# test_quick for EH handling

Jason Hiser
committed
.basic-pgms-rida: &eh-tests

Jason Hiser
committed
eh-tests-ubuntu18:
<<: *eh-tests

Jason Hiser
committed
eh-tests-ubuntu16:
<<: *eh-tests
tags:
- ubuntu16

Jason Hiser
committed
eh-tests-centos75:
<<: *eh-tests
#
# test_cmds.sh fixcalls
#
.basic-pgms-fixcalls: &basic-pgms-fixcalls
stage: test
script:
- ./cicd_testing/basic-pgms-fixcalls.sh
basic-pgms-fixcalls-ubuntu18:
<<: *basic-pgms-fixcalls
tags:
- ubuntu18
basic-pgms-fixcalls-ubuntu16:
<<: *basic-pgms-fixcalls
tags:
- ubuntu16
basic-pgms-fixcalls-centos75:
<<: *basic-pgms-fixcalls
tags:
- centos75
# template
.elfdep: &elfdep
stage: test
script:
elfdep-ubuntu18:
<<: *elfdep
tags:
- ubuntu18
variables:
OS: 'ubuntu18'
elfdep-ubuntu16:
<<: *elfdep
tags:
- ubuntu16
variables:
OS: 'ubuntu16'
elfdep-centos75:
<<: *elfdep
tags:
- centos75
variables:
OS: 'centos75'