Newer
Older
before_script:
- echo "Before script section"
- echo "For example you might run an update here or install a build dependency"
- echo "Or perhaps you might print out some debugging details"
after_script:
- echo "After script section"
- echo "For example you might ro some cleanup here"
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
build1:
stage: build
only:
- master
tags:
- cpp
script:
- echo "Do your build here"
test1:
stage: test
only:
- master
script:
- echo "For test1 example run a test suite"
test2:
stage: test
tags:
- perl
script:
- echo "Do test2 another parallel test here"
- echo "For test2 example run a lint test"
test3:
stage: test
only:
- master
script:
- echo "Do test3 another parallel test here"
- echo "For test3 example run a lint test"
test4:
stage: test
only:
- master
tags:
- ruby
script:
- echo "Do test4 another parallel test here"
- echo "For test4 example run a lint test"
deploy1:
stage: deploy
only:
- master
script:
- echo "Do your deploy here"