Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
before_script:
- "source ~gitlab-runner/cicd_support/cicd_support.shinc"
after_script:
- "echo Test Complete."
stages:
- clean
- build
- test
#
# Cleaning
#
#template
.do-clean: &do-nightly-clean
stage: clean
script:
- ./cicd_testing/do-clean.sh
# per os items
do-nightly-clean-ubuntu18:
<<: *do-nightly-clean
tags:
- ubuntu18
variables:
OS: 'ubuntu18'
do-nightly-clean-ubuntu16:
<<: *do-nightly-clean
tags:
- ubuntu16
variables:
OS: 'ubuntu16'
<<: *do-nightly-clean
tags:
#
# building
#
# template
.do-build: &do-build
stage: build
script:
- ./cicd_testing/do-build.sh
# per os items
do-build-ubuntu18:
<<: *do-build
tags:
- ubuntu18
variables:
OS: 'ubuntu18'
do-build-ubuntu16:
<<: *do-build
tags:
- ubuntu16
variables:
OS: 'ubuntu16'
#
# template
.xform-ls: &xform-ls
stage: test
script:
- ./cicd_testing/xform-ls.sh
#per OS
xform-ls-ubuntu18:
<<: *xform-ls
tags:
- ubuntu18
variables:
OS: 'ubuntu18'
xform-ls-ubuntu16:
<<: *xform-ls
tags:
- ubuntu16
variables:
OS: 'ubuntu16'
#
# $PSZ ls with kill_deads
#
# template
.starstest: &starstest
stage: test
script:
- ./cicd_testing/starstest.sh
#per OS
starstest-ubuntu18:
<<: *starstest
tags:
- ubuntu18
variables:
OS: 'ubuntu18'
starstest-ubuntu16:
<<: *starstest
tags:
- ubuntu16
variables:
OS: 'ubuntu16'