@@ -126,219 +126,3 @@ jobs:
126126 platform : Windows
127127 publishRunAttachments : false
128128 condition : succeededOrFailed()
129-
130- - job : linux_clang
131- displayName : linux-clang
132- condition : succeeded()
133- pool : Hosted Ubuntu 1604
134- steps :
135- - bash : |
136- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
137-
138- sudo apt-get update &&
139- sudo apt-get -y install git gcc make libssl-dev libcurl4-openssl-dev libexpat-dev tcl tk gettext git-email zlib1g-dev apache2-bin &&
140-
141- export CC=clang || exit 1
142-
143- ci/install-dependencies.sh || exit 1
144- ci/run-build-and-tests.sh || {
145- ci/print-test-failures.sh
146- exit 1
147- }
148-
149- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
150- displayName: 'ci/run-build-and-tests.sh'
151- env:
152- GITFILESHAREPWD: $(gitfileshare.pwd)
153- - task : PublishTestResults@2
154- displayName : ' Publish Test Results **/TEST-*.xml'
155- inputs :
156- mergeTestResults : true
157- testRunTitle : ' linux-clang'
158- platform : Linux
159- publishRunAttachments : false
160- condition : succeededOrFailed()
161-
162- - job : linux_gcc
163- displayName : linux-gcc
164- condition : succeeded()
165- pool : Hosted Ubuntu 1604
166- steps :
167- - bash : |
168- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
169-
170- sudo add-apt-repository ppa:ubuntu-toolchain-r/test &&
171- sudo apt-get update &&
172- sudo apt-get -y install git gcc make libssl-dev libcurl4-openssl-dev libexpat-dev tcl tk gettext git-email zlib1g-dev apache2 language-pack-is git-svn gcc-8 || exit 1
173-
174- ci/install-dependencies.sh || exit 1
175- ci/run-build-and-tests.sh || {
176- ci/print-test-failures.sh
177- exit 1
178- }
179-
180- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
181- displayName: 'ci/run-build-and-tests.sh'
182- env:
183- GITFILESHAREPWD: $(gitfileshare.pwd)
184- - task : PublishTestResults@2
185- displayName : ' Publish Test Results **/TEST-*.xml'
186- inputs :
187- mergeTestResults : true
188- testRunTitle : ' linux-gcc'
189- platform : Linux
190- publishRunAttachments : false
191- condition : succeededOrFailed()
192-
193- - job : osx_clang
194- displayName : osx-clang
195- condition : succeeded()
196- pool : Hosted macOS
197- steps :
198- - bash : |
199- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
200-
201- export CC=clang
202-
203- ci/install-dependencies.sh || exit 1
204- ci/run-build-and-tests.sh || {
205- ci/print-test-failures.sh
206- exit 1
207- }
208-
209- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || umount "$HOME/test-cache" || exit 1
210- displayName: 'ci/run-build-and-tests.sh'
211- env:
212- GITFILESHAREPWD: $(gitfileshare.pwd)
213- - task : PublishTestResults@2
214- displayName : ' Publish Test Results **/TEST-*.xml'
215- inputs :
216- mergeTestResults : true
217- testRunTitle : ' osx-clang'
218- platform : macOS
219- publishRunAttachments : false
220- condition : succeededOrFailed()
221-
222- - job : osx_gcc
223- displayName : osx-gcc
224- condition : succeeded()
225- pool : Hosted macOS
226- steps :
227- - bash : |
228- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
229-
230- ci/install-dependencies.sh || exit 1
231- ci/run-build-and-tests.sh || {
232- ci/print-test-failures.sh
233- exit 1
234- }
235-
236- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || umount "$HOME/test-cache" || exit 1
237- displayName: 'ci/run-build-and-tests.sh'
238- env:
239- GITFILESHAREPWD: $(gitfileshare.pwd)
240- - task : PublishTestResults@2
241- displayName : ' Publish Test Results **/TEST-*.xml'
242- inputs :
243- mergeTestResults : true
244- testRunTitle : ' osx-gcc'
245- platform : macOS
246- publishRunAttachments : false
247- condition : succeededOrFailed()
248-
249- - job : gettext_poison
250- displayName : GETTEXT_POISON
251- condition : succeeded()
252- pool : Hosted Ubuntu 1604
253- steps :
254- - bash : |
255- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
256-
257- sudo apt-get update &&
258- sudo apt-get -y install git gcc make libssl-dev libcurl4-openssl-dev libexpat-dev tcl tk gettext git-email zlib1g-dev &&
259-
260- export jobname=GETTEXT_POISON || exit 1
261-
262- ci/run-build-and-tests.sh || {
263- ci/print-test-failures.sh
264- exit 1
265- }
266-
267- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
268- displayName: 'ci/run-build-and-tests.sh'
269- env:
270- GITFILESHAREPWD: $(gitfileshare.pwd)
271- - task : PublishTestResults@2
272- displayName : ' Publish Test Results **/TEST-*.xml'
273- inputs :
274- mergeTestResults : true
275- testRunTitle : ' gettext-poison'
276- platform : Linux
277- publishRunAttachments : false
278- condition : succeededOrFailed()
279-
280- - job : linux32
281- displayName : Linux32
282- condition : succeeded()
283- pool : Hosted Ubuntu 1604
284- steps :
285- - bash : |
286- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
287-
288- sudo AGENT_OS="$AGENT_OS" BUILD_BUILDNUMBER="$BUILD_BUILDNUMBER" BUILD_REPOSITORY_URI="$BUILD_REPOSITORY_URI" BUILD_SOURCEBRANCH="$BUILD_SOURCEBRANCH" BUILD_SOURCEVERSION="$BUILD_SOURCEVERSION" SYSTEM_PHASENAME="$SYSTEM_PHASENAME" SYSTEM_TASKDEFINITIONSURI="$SYSTEM_TASKDEFINITIONSURI" SYSTEM_TEAMPROJECT="$SYSTEM_TEAMPROJECT" CC=$CC MAKEFLAGS=-j3 bash -lxc ci/run-linux32-docker.sh || exit 1
289-
290- sudo chmod a+r t/out/TEST-*.xml
291-
292- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
293- displayName: 'ci/run-linux32-docker.sh'
294- env:
295- GITFILESHAREPWD: $(gitfileshare.pwd)
296- - task : PublishTestResults@2
297- displayName : ' Publish Test Results **/TEST-*.xml'
298- inputs :
299- mergeTestResults : true
300- testRunTitle : ' linux32'
301- platform : Linux
302- publishRunAttachments : false
303- condition : succeededOrFailed()
304-
305- - job : static_analysis
306- displayName : StaticAnalysis
307- condition : succeeded()
308- pool : Hosted Ubuntu 1604
309- steps :
310- - bash : |
311- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
312-
313- sudo apt-get update &&
314- sudo apt-get install -y coccinelle &&
315-
316- export jobname=StaticAnalysis &&
317-
318- ci/run-static-analysis.sh || exit 1
319-
320- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
321- displayName: 'ci/run-static-analysis.sh'
322- env:
323- GITFILESHAREPWD: $(gitfileshare.pwd)
324-
325- - job : documentation
326- displayName : Documentation
327- condition : succeeded()
328- pool : Hosted Ubuntu 1604
329- steps :
330- - bash : |
331- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || ci/mount-fileshare.sh //gitfileshare.file.core.windows.net/test-cache gitfileshare "$GITFILESHAREPWD" "$HOME/test-cache" || exit 1
332-
333- sudo apt-get update &&
334- sudo apt-get install -y asciidoc xmlto asciidoctor &&
335-
336- export ALREADY_HAVE_ASCIIDOCTOR=yes. &&
337- export jobname=Documentation &&
338-
339- ci/test-documentation.sh || exit 1
340-
341- test "$GITFILESHAREPWD" = '$(gitfileshare.pwd)' || sudo umount "$HOME/test-cache" || exit 1
342- displayName: 'ci/test-documentation.sh'
343- env:
344- GITFILESHAREPWD: $(gitfileshare.pwd)
0 commit comments