forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
338 lines (320 loc) · 17 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
language: java
addons:
apt:
packages:
- ant
- ant-optional
- xvfb
- openjfx
install:
- export PATH="$PATH:$TRAVIS_BUILD_DIR/nbbuild/travis"
- export DISPLAY=:99.0
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- sleep 3
script:
- if [ "x$OPTS" == "x" ]; then OPTS="-quiet -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false"; fi
- if [ "x$TARGET" == "x" ]; then TARGET="build"; fi
- ant $OPTS clean
- ant $OPTS $TARGET
- if [ "x$COMPILETEST" == "xtrue" ]; then ant -quiet test -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild; fi
- if [ "x$LICENSE" == "xtrue" ]; then ant -quiet verify-libs-and-licenses -Dverify-libs-and-licenses.haltonfailure=true; fi
- if [ "x$SIGTEST" == "xtrue" ]; then ant check-sigtests; fi
- if [ "x$SIGTEST" == "xtrue" ]; then ant gen-sigtests-release; fi
- if [ "x$SCRIPT" != "x" ]; then ./$SCRIPT; fi
- if [ "x$CV" == "xtrue" ]; then ant -quiet -f ergonomics/ide.ergonomics/ test -Dtest.config=commit; fi
- if [ "x$RUN_TESTS_JDK8" == "xtrue" ]; then for MODULE in $TEST_MODULES; do cd $MODULE; ant test; done; fi
- if [ "x$RUN_TESTS_JDK9PLUS" == "xtrue" ]; then wget https://raw.githubusercontent.com/sormuras/bach/master/install-jdk.sh && export TEST_JDK=`bash install-jdk.sh $TEST_JDK_VERSION --emit-java-home --silent | tail -1` && for MODULE in $TEST_MODULES; do cd $MODULE; ant "-Dtest.nbjdk.home=$TEST_JDK" $TEST_RUN_OPTIONS test; done; fi
matrix:
include:
- name: Check line endings and verify RAT report
script:
- nbbuild/travis/check-line-endings.sh
- ant -quiet build-source-config
- mkdir scratch
- cd scratch
- unzip -qq ../nbbuild/build/release-src*
- ant -quiet rat -Drat-report.haltonfailure=true
- env: SIGTEST=false COMPILETEST=true LICENSE=true CV=false RUN_TESTS_JDK8=false RUN_JAVA_TESTS=false
jdk: openjdk8
- env: SIGTEST=true COMPILETEST=false LICENSE=false CV=true RUN_TESTS_JDK8=false RUN_JAVA_TESTS=false
jdk: openjdk8
# - env: TARGET="build-platform" SCRIPT=nbbuild/travis/scripting.sh
# jdk: openjdk8
- env: TARGET="build-platform" SCRIPT=nbbuild/travis/gensigtest.sh
jdk: openjdk8
- env: OPTS="-quiet" TARGET="build-platform"
jdk: openjdk11
- env: OPTS="-quiet -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false" TARGET="build-basic"
jdk: openjdk8
- env: OPTS="-Dcluster.config=standard -quiet -Dpermit.jdk9.builds=true -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false" TARGET="build"
jdk: openjdk11
- env: SIGTEST=false COMPILETEST=false LICENSE=false CV=false RUN_TESTS_JDK9PLUS=false RUN_TESTS_JDK8=true TEST_MODULES="java/java.completion java/spi.java.hints java/java.hints.declarative" OPTS="-Dcluster.config=java -quiet build -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true"
jdk: openjdk8
- env: SIGTEST=false COMPILETEST=false LICENSE=false CV=false RUN_TESTS_JDK8=false RUN_TESTS_JDK9PLUS=true TEST_JDK_VERSION="--feature 11 --license GPL" TEST_RUN_OPTIONS='-Dtest.run.args=--limit-modules=java.base,java.logging,java.xml,java.prefs,java.desktop,java.management,java.instrument -Dtest.use.jdk.javac=true' TEST_MODULES="java/java.completion" OPTS="-Dcluster.config=java -quiet build -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false"
jdk: openjdk8
- env: SIGTEST=false COMPILETEST=false LICENSE=false CV=false RUN_TESTS_JDK8=false RUN_TESTS_JDK9PLUS=true TEST_JDK_VERSION="--feature 12 --license GPL" TEST_RUN_OPTIONS='-Dtest.run.args=--add-exports=jdk.javadoc/com.sun.tools.javadoc.main=ALL-UNNAMED -Dtest.use.jdk.javac=true' TEST_MODULES="java/java.completion" OPTS="-Dcluster.config=java -quiet build -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false"
jdk: openjdk8
- name: Test harness modules
jdk: openjdk8
env:
- OPTS="-silent -Dcluster.config=platform -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
before_script:
- ant $OPTS clean
- ant $OPTS build
script:
- OPTS="-quiet -Dcluster.config=platform -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
- ant $OPTS -f harness/o.n.insane test
- ant $OPTS -f harness/apisupport.harness test
- ant $OPTS -f harness/nbjunit test
# - ant $OPTS -f harness/jellytools.platform test
- name: Test platform modules, Batch 1
jdk: openjdk8
env:
- OPTS="-silent -Dcluster.config=platform -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
before_script:
- ant $OPTS clean
- ant $OPTS build
script:
- hide-logs.sh ant $OPTS -f platform/api.htmlui test
- hide-logs.sh ant $OPTS -f platform/api.intent test
- hide-logs.sh ant $OPTS -f platform/api.io test
- hide-logs.sh ant $OPTS -f platform/api.progress test
- hide-logs.sh ant $OPTS -f platform/api.progress.nb test
- hide-logs.sh ant $OPTS -f platform/api.scripting test
- hide-logs.sh ant $OPTS -f platform/api.search test
- hide-logs.sh ant $OPTS -f platform/api.templates test
- hide-logs.sh ant $OPTS -f platform/api.visual test
- hide-logs.sh ant $OPTS -f platform/applemenu test
- hide-logs.sh ant $OPTS -f platform/autoupdate.cli test
- hide-logs.sh ant $OPTS -f platform/autoupdate.services test
- hide-logs.sh ant $OPTS -f platform/autoupdate.ui test
- hide-logs.sh ant $OPTS -f platform/core.execution test
- hide-logs.sh ant $OPTS -f platform/core.io.ui test
- hide-logs.sh ant $OPTS -f platform/core.kit test
- hide-logs.sh ant $OPTS -f platform/core.multiview test
- hide-logs.sh ant $OPTS -f platform/core.netigso test
#- hide-logs.sh ant $OPTS -f platform/core.network test
#- hide-logs.sh ant $OPTS -f platform/core.osgi test
- hide-logs.sh ant $OPTS -f platform/core.output2 test
- hide-logs.sh ant $OPTS -f platform/core.startup test
- hide-logs.sh ant $OPTS -f platform/core.startup.base test
- hide-logs.sh ant $OPTS -f platform/core.ui test
#- hide-logs.sh ant $OPTS -f platform/core.windows test
- hide-logs.sh ant $OPTS -f platform/editor.mimelookup test
- hide-logs.sh ant $OPTS -f platform/editor.mimelookup.impl test
- hide-logs.sh ant $OPTS -f platform/favorites test
- hide-logs.sh ant $OPTS -f platform/javahelp test-unit
- hide-logs.sh ant $OPTS -f platform/keyring.fallback test
- hide-logs.sh ant $OPTS -f platform/keyring.impl test
- hide-logs.sh ant $OPTS -f platform/lib.uihandler test
- hide-logs.sh ant $OPTS -f platform/libs.javafx test
- hide-logs.sh ant $OPTS -f platform/masterfs test
- hide-logs.sh ant $OPTS -f platform/masterfs.linux test
#- hide-logs.sh ant $OPTS -f platform/netbinox test
- hide-logs.sh ant $OPTS -f platform/o.n.bootstrap test
- hide-logs.sh ant $OPTS -f platform/o.n.core test-unit
- hide-logs.sh ant $OPTS -f platform/o.n.swing.outline test
- hide-logs.sh ant $OPTS -f platform/o.n.swing.tabcontrol test
- name: Test platform modules, Batch 2
jdk: openjdk8
env:
- OPTS="-silent -Dcluster.config=platform -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
before_script:
- ant $OPTS clean
- ant $OPTS build
script:
- hide-logs.sh ant $OPTS -f platform/openide.actions test
- hide-logs.sh ant $OPTS -f platform/openide.awt test
- hide-logs.sh ant $OPTS -f platform/openide.compat test
- hide-logs.sh ant $OPTS -f platform/openide.dialogs test
- hide-logs.sh ant $OPTS -f platform/openide.execution test
- hide-logs.sh ant $OPTS -f platform/openide.execution.compat8 test
- hide-logs.sh ant $OPTS -f platform/openide.explorer test
- hide-logs.sh ant $OPTS -f platform/openide.filesystems test
- hide-logs.sh ant $OPTS -f platform/openide.filesystems.compat8 test
- hide-logs.sh ant $OPTS -f platform/openide.filesystems.nb test
- hide-logs.sh ant $OPTS -f platform/openide.io test
- hide-logs.sh ant $OPTS -f platform/openide.loaders test
- hide-logs.sh ant $OPTS -f platform/openide.modules test
- hide-logs.sh ant $OPTS -f platform/openide.nodes test
- hide-logs.sh ant $OPTS -f platform/openide.options test
- travis_retry hide-logs.sh ant $OPTS -f platform/openide.text test
- hide-logs.sh ant $OPTS -f platform/openide.util test
- hide-logs.sh ant $OPTS -f platform/openide.util.enumerations test
- hide-logs.sh ant $OPTS -f platform/openide.util.lookup test
- hide-logs.sh ant $OPTS -f platform/openide.util.ui test
- hide-logs.sh ant $OPTS -f platform/openide.windows test
- hide-logs.sh ant $OPTS -f platform/options.api test-unit
- hide-logs.sh ant $OPTS -f platform/options.keymap test
- hide-logs.sh ant $OPTS -f platform/print test
- hide-logs.sh ant $OPTS -f platform/progress.ui test
- hide-logs.sh ant $OPTS -f platform/queries test
- hide-logs.sh ant $OPTS -f platform/sampler test
- hide-logs.sh ant $OPTS -f platform/sendopts test
- hide-logs.sh ant $OPTS -f platform/settings test
- hide-logs.sh ant $OPTS -f platform/spi.actions test
- hide-logs.sh ant $OPTS -f platform/spi.quicksearch test
- hide-logs.sh ant $OPTS -f platform/templates test
- hide-logs.sh ant $OPTS -f platform/templatesui test
- hide-logs.sh ant $OPTS -f platform/uihandler test
- env: >
SIGTEST=false
COMPILETEST=false
LICENSE=false
CV=false
RUN_TESTS_JDK9PLUS=false
RUN_TESTS_JDK8=true
OPTS="-Dcluster.config=minimal -quiet build -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true"
TEST_MODULES="ide/api.xml
ide/api.xml.ui
ide/bugtracking
ide/bugtracking.bridge
ide/bugtracking.commons
ide/bugzilla
ide/code.analysis
ide/core.ide
ide/csl.api
ide/csl.types
ide/css.editor
ide/css.lib
ide/css.model
ide/db
ide/db.dataview
ide/db.sql.editor
ide/docker.api
ide/docker.ui
ide/editor.bookmarks
ide/editor.bracesmatching
ide/editor.document
ide/editor.fold
ide/editor.fold.nbui
ide/editor.guards
ide/editor.indent
ide/editor.indent.project
ide/editor.macros
ide/editor.search
ide/editor.settings
ide/editor.settings.storage
ide/editor.structure
ide/editor.tools.storage
ide/editor.util
ide/extbrowser
ide/extexecution.base
ide/gsf.testrunner.ui
ide/html
ide/html.custom
ide/html.editor
ide/html.lexer
ide/html.parser
ide/html.validation
ide/hudson
ide/hudson.git
ide/hudson.mercurial
ide/hudson.subversion
ide/hudson.tasklist
ide/hudson.ui
ide/javascript2.debug
ide/languages.yaml
ide/lexer
ide/lib.terminalemulator
ide/libs.freemarker
ide/libs.git
ide/libs.graalsdk
ide/localhistory
ide/o.openidex.util
ide/parsing.api
ide/parsing.indexing
ide/parsing.lucene
ide/project.ant
ide/project.ant.compat8
ide/project.ant.ui
ide/project.libraries
ide/project.libraries.ui
ide/projectapi
ide/projectapi.nb
ide/projectuiapi.base
ide/refactoring.api
ide/schema2beans
ide/server
ide/spellchecker
ide/spi.editor.hints
ide/spi.palette
ide/spi.tasklist
ide/tasklist.ui
ide/team.commons
ide/terminal.nb
ide/utilities
ide/versioning.masterfs
ide/versioning.ui
ide/versioning.util
ide/web.common
ide/web.common.ui
ide/web.webkit.debugging
ide/xml
ide/xml.axi
ide/xml.core
ide/xml.lexer
ide/xml.multiview
ide/xml.text
ide/xml.text.obsolete90
ide/xml.xam
ide/xml.xdm
ide/xsl"
jdk: openjdk8
- name: "Versioning modules (ide/versioning and ide/versioning.core) tests"
jdk: openjdk8
env:
- OPTS="-quiet -Dcluster.config=minimal -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false"
- OPTS_TEST="-Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true"
- GIT_TEST_REPO="$HOME/git_test_repo"
script:
# Build sources
- ant $OPTS clean
- ant $OPTS build
# Run unit tests
- ant $OPTS $OPTS_TEST -f ide/versioning.core test-unit
- ant $OPTS $OPTS_TEST -f ide/versioning test-unit
#Prepare git repo for tests
- git init $GIT_TEST_REPO
# Prepare config file for ide/versioning.core module
- touch ide/versioning.core/test/qa-functional/data/tck.properties
- echo "test.root = $GIT_TEST_REPO" > ide/versioning.core/test/qa-functional/data/tck.properties
- echo "test.vcs = org.netbeans.modules.versioning.DelegatingVCS" >> ide/versioning.core/test/qa-functional/data/tck.properties
# Run functional tests for ide/versioning.core module
- ant $OPTS $OPTS_TEST -f ide/versioning.core test-qa-functional
# Prepare config file for ide/versioning module
- touch ide/versioning/test/qa-functional/data/tck.properties
- echo "test.root = $GIT_TEST_REPO" > ide/versioning/test/qa-functional/data/tck.properties
- echo "test.vcs = org.netbeans.modules.git.GitVCS" >> ide/versioning/test/qa-functional/data/tck.properties
# Run functional tests for ide/versioning module
- ant $OPTS $OPTS_TEST -f ide/versioning test-qa-functional
- name: "Tests with mysql database"
jdk: openjdk8
services:
- mysql
env:
- OPTS="-Dcluster.config=minimal -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false"
- OPTS_TEST="-Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true -Dtest-unit-sys-prop.mysql.user=root -Dtest-unit-sys-prop.mysql.password=password"
before_script:
- echo "ALTER USER root@'localhost' IDENTIFIED BY 'password';\nFLUSH PRIVILEGES;\n" | mysql -u root
- ant $OPTS clean
- ant $OPTS build
script:
- travis_retry ant $OPTS $OPTS_TEST -f ide/db.metadata.model test
- travis_retry ant $OPTS $OPTS_TEST -f ide/db.mysql test