File tree 1 file changed +8
-8
lines changed 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,18 @@ stages:
12
12
13
13
jobs :
14
14
include :
15
- - stage : build
16
15
# Build stage. To save time, run all kinds of builds and tests in parallel.
17
16
#
18
17
# TODO: since we can now call different script for each job,
19
18
# split the do-it-all common.sh into separate scripts responsible
20
19
# for different types of jobs below:
20
+ - name : " Host tests"
21
+ stage : build
22
+ env :
23
+ - BUILD_TYPE=host_tests
24
+ install :
25
+ - sudo apt-get install valgrind lcov
26
+
21
27
- name : " Build (1)"
22
28
env :
23
29
- BUILD_TYPE=build_even
43
49
install :
44
50
- pip install --user -r doc/requirements.txt;
45
51
46
- - name : " Host tests"
47
- env :
48
- - BUILD_TYPE=host_tests
49
- install :
50
- - sudo apt-get install valgrind lcov
51
-
52
52
- name : " Style check"
53
53
env :
54
54
- BUILD_TYPE=style_check
65
65
66
66
# Deploy stage.
67
67
# Here we build the package JSON (always) and do the deployments
68
- - stage : deploy
69
68
- name : " Package / deploy"
69
+ stage : deploy
70
70
script : $TRAVIS_BUILD_DIR/tests/common.sh
71
71
env : BUILD_TYPE=package
72
72
deploy :
You can’t perform that action at this time.
0 commit comments