forked from open-watcom/open-watcom-v2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
executable file
·211 lines (200 loc) · 5.53 KB
/
.travis.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
language: c
compiler: gcc
sudo: required
dist: trusty
env:
global:
- OWROOT=$TRAVIS_BUILD_DIR
- OWOBJDIR=binbuild
- OWDOCBUILD=0
- OWDOCQUIET=1
# - OWUSE_FILENAME_VERSION=1
- OWBRANCH=master
- OWBRANCH_COVERITY=coverity_scan
- OWTRAVIS_REPO_SLUG=open-watcom/travis-ci-ow-builds
- OWTRAVIS_BUILD_DIR=${HOME}/build/$OWTRAVIS_REPO_SLUG
cache:
directories:
- build/$OWOBJDIR
- bld/watcom/$OWOBJDIR
# - bld
- test
before_script:
# initialize OW build environment variables
- . ./cmnvars.sh
# get clone of GitHub repository to return Travis CI OW build/log files
- travis/envinfo.sh
- travis/cacheinf.sh
after_failure:
# after failure transfer log files back to GitHub repository
- travis/cacheinf.sh
- travis/gitupdf.sh
after_success:
# after success transfer OW build to GitHub repository
- travis/cacheinf.sh
- travis/gitupds.sh
jobs:
allow_failures:
- os: osx
include:
#################################
- stage: Initialize
name: "Initialize stages shared environment"
os: linux
before_script:
- travis/envinfo.sh
- travis/cacheinf.sh
script: travis/tinit.sh
#################################
- stage: Bootstrap
name: "Build minimal set of build tools"
os: linux
install:
- export OWTOOLS=GCC
- export OWTRAVISJOB=BOOTSTRAP
- export OWDOCBUILD=0
- export OWVERBOSE=1
script: travis/build.sh
- # ...
name: "Build minimal set of build tools"
if: env(OWOSXBUILD) = 1
os: osx
install:
- export OWTOOLS=CLANG
- export OWTRAVISJOB=BOOTSTRAP
- export OWDOCBUILD=0
- export OWVERBOSE=1
script: travis/build.sh
#################################
- stage: Build1
name: "OW tools build"
os: linux
install:
- export OWTOOLS=GCC
- export OWTRAVISJOB=BUILD
- export OWDOCBUILD=0
- export OWVERBOSE=0
# install DOS Emulator
- sudo apt-get install -y dosemu
script: travis/build.sh
- # ...
name: "OW Documentation build"
os: linux
install:
- export OWTOOLS=GCC
- export OWTRAVISJOB=DOCPDF
- export OWDOCBUILD=1
- export OWVERBOSE=0
- export OWGHOSTSCRIPTPATH=$PATH
# install DOS Emulator + Ghostscript
- sudo apt-get install -y dosemu ghostscript
script: travis/build.sh
- # ...
name: "OW tools OSX build 1"
if: env(OWOSXBUILD) = 1
os: osx
install:
- export OWTOOLS=CLANG
- export OWTRAVISJOB=BUILD1
- export OWDOCBUILD=0
- export OWVERBOSE=0
# install DOS Emulator
- brew install dosbox
- export OWDOSBOX=dosbox
script: travis/build.sh
#################################
- stage: Build2
name: "OW tools OSX build 2"
if: env(OWOSXBUILD) = 1
os: osx
install:
- export OWTOOLS=CLANG
- export OWTRAVISJOB=BUILD2
- export OWDOCBUILD=0
- export OWVERBOSE=0
# install DOS Emulator
- brew install dosbox
- export OWDOSBOX=dosbox
script: travis/build.sh
#################################
- stage: Tests
name: "Test wasm assembler"
os: linux
install:
- export OWTOOLS=WATCOM
- export WATCOM=$OWROOT/test
- export PATH=$WATCOM/binl:$PATH
- export INCLUDE=$WATCOM/lh
- unset LIB
- export OWTRAVISJOB=TEST
- export OWDOCBUILD=0
- export OWVERBOSE=0
script: travis/test.sh wasm
- # ...
name: "Test C compiler"
os: linux
install:
- export OWTOOLS=WATCOM
- export WATCOM=$OWROOT/test
- export PATH=$WATCOM/binl:$PATH
- export INCLUDE=$WATCOM/lh
- unset LIB
- export OWTRAVISJOB=TEST
- export OWDOCBUILD=0
- export OWVERBOSE=0
script: travis/test.sh c
- # ...
name: "Test FORTRAN 77 compiler"
os: linux
install:
- export OWTOOLS=WATCOM
- export WATCOM=$OWROOT/test
- export PATH=$WATCOM/binl:$PATH
- export INCLUDE=$WATCOM/lh
- unset LIB
- export OWTRAVISJOB=TEST
- export OWDOCBUILD=0
- export OWVERBOSE=0
script: travis/test.sh f77
- # ...
name: "Test C++ compiler"
os: linux
install:
- export OWTOOLS=WATCOM
- export WATCOM=$OWROOT/test
- export PATH=$WATCOM/binl:$PATH
- export INCLUDE=$WATCOM/lh
- unset LIB
- export OWTRAVISJOB=TEST
- export OWDOCBUILD=0
- export OWVERBOSE=0
script: travis/test.sh cpp
- # ...
name: "Test C run-time library"
os: linux
install:
- export OWTOOLS=WATCOM
- export WATCOM=$OWROOT/test
- export PATH=$WATCOM/binl:$PATH
- export INCLUDE=$WATCOM/lh
- unset LIB
- export OWTRAVISJOB=TEST
- export OWDOCBUILD=0
- export OWVERBOSE=0
script: travis/test.sh crtl
#################################
- stage: Finalize
name: "Clean stages shared environment"
os: linux
before_script:
- travis/envinfo.sh
- travis/cacheinf.sh
script: travis/tfini.sh
# coverity_scan:
# project:
# name: "$TRAVIS_REPO_SLUG"
# description: "Build submitted via Travis CI"
# notification_email: "[email protected]"
# build_command_prepend:
# build_command: "travis/build.sh scan"
# branch_pattern: coverity_scan