Merge "Migrate autorelease jobs to lf-infra-publish"
[releng/builder.git] / jjb / releng-macros.yaml
1 # OLD Releng macros
2 ---
3 - property:
4     name: opendaylight-infra-properties
5     properties:
6       - build-discarder:
7           days-to-keep: '{build-days-to-keep}'
8           num-to-keep: 40
9           # Need to keep artifacts for at least 1 day as some projects need to
10           # be able to validate their artifacts and only allowing limited
11           # number of artifacts could make fast moving jobs lost their
12           # artifacts before the developers can test it.
13           artifact-days-to-keep: 1
14
15 - parameter:
16     name: opendaylight-infra-parameters
17     parameters:
18       - string:
19           name: PROJECT
20           default: '{project}'
21           description: 'Parameter to identify an ODL Gerrit project'
22       - string:
23           name: ARCHIVE_ARTIFACTS
24           default: >
25               {artifacts}
26               **/target/surefire-reports/*-output.txt
27               **/hs_err_*.log
28               **/target/feature/feature.xml
29               **/*.hprof
30           description: 'Space separated glob patterns for artifacts to archive into logs.opendaylight.org'
31       - string:
32           name: GERRIT_PROJECT
33           default: '{project}'
34           description: "GERRIT_PROJECT parameter if not given by trigger"
35       - string:
36           name: GERRIT_BRANCH
37           default: '{branch}'
38           description: "JJB configured GERRIT_BRANCH parameter"
39       - string:
40           name: GERRIT_REFSPEC
41           default: '{refspec}'
42           description: "GERRIT_REFSPEC parameter if not given by trigger"
43       - string:
44           name: STACK_NAME
45           default: '$SILO-$JOB_NAME-$BUILD_NUMBER'
46           description: "Used by Heat to generate a unique stack & vm name"
47       - string:
48           name: OS_CLOUD
49           default: '{os-cloud}'
50           description: |
51               The name of a cloud configuration in clouds.yaml. OS_CLOUD is a
52               variable name that is significant to openstack client as a
53               environment variable. Please refer to the documentation for
54               further details.
55               https://docs.openstack.org/developer/python-openstackclient/
56
57 - parameter:
58     name: build-tag
59     parameters:
60       - string:
61           name: BUILD_TAG
62           default: ''
63           description: 'Tag in Git to checkout'
64
65 - parameter:
66     name: controller-version-parameter
67     parameters:
68       - string:
69           name: ODL_VERSION
70           default: '{odl_version}'
71           description: 'Controller version (for use with openstacks networking_odl project)'
72
73 - parameter:
74     name: patches-to-build-parameter
75     parameters:
76       - string:
77           name: PATCHES_TO_BUILD
78           default: ''
79           description: |
80             Patches to add to distro in CSV project:changeset format (genius:32/53632/9,netvirt:59/50259/47)
81
82 - parameter:
83     name: run-test-parameter
84     parameters:
85       - string:
86           name: RUNTEST
87           default: '{run-test}'
88           description: 'Set true to run test after build'
89
90 - parameter:
91     name: distribution-branch-to-build-parameter
92     parameters:
93       - string:
94           name: DISTRIBUTION_BRANCH_TO_BUILD
95           default: 'master'
96           description: 'distribution repo branch to build with'
97
98 - parameter:
99     name: p2zip-parameter
100     parameters:
101       - string:
102           name: P2ZIP_URL
103           default: ''
104           description: 'Nexus staging profile id'
105
106 - parameter:
107     name: stage-id-parameter
108     parameters:
109       - string:
110           name: STAGING_PROFILE_ID
111           default: '{stage-id}'
112           description: 'Nexus staging profile id'
113
114 - parameter:
115     name: maven-exec
116     parameters:
117       - string:
118           name: MVN
119           default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{maven-version}/bin/mvn'
120           description: 'Maven selector to be used by shell scripts'
121
122 - scm:
123     name: git-scm
124     scm:
125       - git:
126           credentials-id: 'opendaylight-jenkins-ssh'
127           url: '$GIT_BASE'
128           refspec: ''
129           branches:
130             - 'origin/{branch}'
131           skip-tag: true
132           wipe-workspace: true
133
134 - scm:
135     name: git-scm-with-submodules
136     scm:
137       - git:
138           credentials-id: 'opendaylight-jenkins-ssh'
139           url: '$GIT_BASE'
140           refspec: ''
141           branches:
142             - 'refs/heads/{branch}'
143           skip-tag: true
144           wipe-workspace: true
145           submodule:
146             recursive: true
147
148 - scm:
149     name: gerrit-trigger-scm
150     scm:
151       - git:
152           credentials-id: 'opendaylight-jenkins-ssh'
153           url: '$GIT_BASE'
154           refspec: '{refspec}'
155           branches:
156             - 'origin/$GERRIT_BRANCH'
157           skip-tag: true
158           choosing-strategy: '{choosing-strategy}'
159
160 - wrapper:
161     name: build-timeout
162     wrappers:
163       - timeout:
164           type: absolute
165           timeout: 360
166           fail: true
167
168 # This is a single macro to use for all jobs who vote on every (relevant) patch set.
169 # Only 'recheck' trigger word is supported, it always triggers the full set of relevant jobs,
170 # in order to prevent Jenkins from starting only a subset and still voting Verified+1.
171 # Arguments:
172 #     server: name of gerrit server to listen to
173 #     project: pattern to match triggering projects
174 #     branch: triggering branch name
175 #     files: pattern to match triggering filepaths
176 - trigger:
177     name: gerrit-trigger-patch-submitted
178     triggers:
179       - gerrit:
180           server-name: '{server}'
181           trigger-on:
182             - patchset-created-event:
183                 exclude-drafts: true
184                 exclude-trivial-rebase: false
185                 exclude-no-code-change: false
186             - draft-published-event
187             - comment-added-contains-event:
188                 comment-contains-value: recheck
189           projects:
190             - project-compare-type: ANT
191               project-pattern: '{project}'
192               branches:
193                 - branch-compare-type: ANT
194                   branch-pattern: '**/{branch}'
195               file-paths:
196                 - compare-type: ANT
197                   pattern: '{files}'
198
199 # TODO: Unify argument names across gerrit-trigger-* macros.
200 - trigger:
201     name: gerrit-trigger-patch-merged
202     triggers:
203       - gerrit:
204           server-name: '{server-name}'
205           trigger-on:
206             - change-merged-event
207             - comment-added-contains-event:
208                 comment-contains-value: 'remerge'
209           projects:
210             - project-compare-type: 'ANT'
211               project-pattern: '{name}'
212               branches:
213                 - branch-compare-type: 'ANT'
214                   branch-pattern: '**/{branch}'
215           skip-vote:
216             successful: true
217             failed: true
218             unstable: true
219             notbuilt: true
220           # Force Jenkins always vote the values it should already have voted
221           # during the prior verify phase
222           override-votes: true
223           gerrit-build-started-verified-value: 1
224           gerrit-build-successful-verified-value: 1
225           gerrit-build-failed-verified-value: 1
226           gerrit-build-unstable-verified-value: 1
227           gerrit-build-notbuilt-verified-value: 1
228           gerrit-build-started-codereview-value: 0
229           gerrit-build-successful-codereview-value: 0
230           gerrit-build-failed-codereview-value: 0
231           gerrit-build-unstable-codereview-value: 0
232           gerrit-build-notbuilt-codereview-value: 0
233
234 # TODO: Unify argument names across gerrit-trigger-* macros.
235 - trigger:
236     name: gerrit-trigger-patch-sonar
237     triggers:
238       - gerrit:
239           server-name: '{server-name}'
240           trigger-on:
241             - comment-added-contains-event:
242                 comment-contains-value: 'run-sonar'
243           projects:
244             - project-compare-type: 'ANT'
245               project-pattern: '{name}'
246               branches:
247                 - branch-compare-type: 'ANT'
248                   branch-pattern: '**/master'
249           skip-vote:
250             successful: true
251             failed: true
252             unstable: true
253             notbuilt: true
254
255 - publisher:
256     name: archive-artifacts
257     publishers:
258       - archive:
259           artifacts: '{artifacts}'
260           allow-empty: true
261           fingerprint: true
262           latest-only: true
263
264 - publisher:
265     name: email-notification
266     publishers:
267       - email-ext:
268           recipients: '{email-recipients}'
269           reply-to: ''
270           content-type: default
271           subject: '{email-prefix} $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!'
272           body: |
273               $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS:
274
275               Please refer to the logs server URL for console logs when possible
276               and use the Jenkins Build URL as a last resort.
277
278               Console Logs URL:
279               https://logs.opendaylight.org/$SILO/$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER
280
281               Jenkins Build URL:
282               $BUILD_URL
283           unstable: true
284           fixed: true
285           send-to:
286             - recipients
287
288 - publisher:
289     name: jacoco-report
290     publishers:
291       - jacoco:
292           exec-pattern: "**/**.exec"
293           class-pattern: "**/classes"
294           source-pattern: "**/src/main/java"
295           exclusion-pattern: "**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**"
296           status-update: true
297           targets:
298             - branch:
299                 healthy: 10
300                 unhealthy: 20
301             - method:
302                 healthy: 50
303                 unhealthy: 40
304
305 - publisher:
306     name: opendaylight-infra-shiplogs
307     # To archive things the job will need to create a "archives" directory in
308     # the workspace and this macro will handle copying the contents of the
309     # archives directory.
310     #
311     # Uses the build parameter ARCHIVE_ARTIFACTS if not empty to find files
312     # to archive. You can pass globstar patterns for example "**/*.xml **/*.log"
313     # as the archive pattern. This is a space separated list of files to archive.
314     #
315     # Also ensure that the workspace is cleaned up at the end of the build.
316     publishers:
317       - postbuildscript:
318           builders:
319             - shell: !include-raw: include-raw-stack-delete.sh
320             - shell: !include-raw-escape: include-raw-deploy-archives.sh
321             - maven-target:
322                 maven-version: '{maven-version}'
323                 pom: '.archives/deploy-archives.xml'
324                 goals: 'clean deploy -V -B -q -Dmaven.repo.local=/tmp/r'
325                 settings: 'jenkins-log-archives-settings'
326                 settings-type: cfp
327                 global-settings: 'odl-global-settings'
328                 global-settings-type: cfp
329             - description-setter:
330                 regexp: '^Build logs: .*'
331             # Cleanup after ourselves
332             - wipe-org-opendaylight-repo
333           script-only-if-succeeded: false
334           script-only-if-failed: false
335           mark-unstable-if-failed: true
336       - workspace-cleanup:
337           exclude:
338             # Do not clean up *.jenkins-trigger files for jobs that use a
339             # properties file as input for triggering another build.
340             - '**/*.jenkins-trigger'
341           fail-build: false
342
343 - builder:
344     name: opendaylight-infra-stack
345     # opendaylight-infra-stack.sh has a required variable {stack-template} that
346     # must be passed into this macro.
347     builders:
348       - shell: !include-raw: opendaylight-infra-stack.sh
349       - shell: !include-raw-escape: opendaylight-infra-copy-ssh-keys.sh
350
351 - builder:
352     name: opendaylight-infra-push-gerrit-patch
353     # opendaylight-infra-push-gerrit-patch.sh allows a job to push a patch to
354     # Gerrit in an automated fashion. This is meant for tasks that creates
355     # the same patch regularly and needs the ability to detect if an unreviewed
356     # patch already exists. In which case it will update the existing patch.
357     #
358     # Note: This patch assumes the $WORKSPACE contains the project repo with
359     #       the files changed already "git add" and waiting for a "git commit" call.
360     #
361     # This script requires the following JJB variables to be passed in:
362     #     {project}       Gerrit project-name
363     #     {gerrit-topic}  Gerrit topic, please make a unique topic.
364     #     {gerrit-commit-message} Commit message to assign to commit.
365     # NOTE: Requires git review to be installed on node.
366     builders:
367       - shell: !include-raw: opendaylight-infra-push-gerrit-patch.sh
368
369 - builder:
370     name: distribute-build-url
371     # Place URL of the current run of a build job to a file at given path.
372     builders:
373       - shell: 'echo "$BUILD_URL" > {path}/build.url'
374
375 - builder:
376     name: wipe-org-opendaylight-repo
377     builders:
378       - shell: 'if [ -d /tmp/r/org/opendaylight ]; then rm -rf /tmp/r/org/opendaylight; fi'
379
380 - builder:
381     name: wipe-local-maven-repo
382     builders:
383       - shell: 'if [ -d /tmp/r ]; then rm -rf /tmp/r; fi'
384
385 - builder:
386     name: jacoco-nojava-workaround
387     builders:
388       - shell: 'mkdir -p $WORKSPACE/target/classes $WORKSPACE/jacoco/classes'
389
390 - builder:
391     name: check-clm
392     builders:
393       - sonatype-clm:
394           application-name: '{application-name}'
395
396 - builder:
397     name: releng-check-unicode
398     builders:
399       - shell: |
400           $WORKSPACE/scripts/check-unicode.sh jjb/
401
402 - builder:
403     name: provide-maven-settings
404     builders:
405       - config-file-provider:
406           files:
407             - file-id: '{global-settings-file}'
408               variable: 'GLOBAL_SETTINGS_FILE'
409             - file-id: '{settings-file}'
410               variable: 'SETTINGS_FILE'
411
412 - builder:
413     name: releng-fetch-p2zip-if-necessary
414     builders:
415       - shell: |
416           # Cleanup any existing zips and metadata before we download the new update site
417           rm -f *.zip *.xml
418       - conditional-step:
419           condition-kind: strings-match
420           condition-string1: '$P2ZIP_URL'
421           condition-string2: ''
422           condition-basedir: workspace
423           steps:
424             # TODO: Figure out latest snapshot version number to pull rather than hardcoding 1.1.1-SNAPSHOT
425             - maven-target:
426                 maven-version: '{maven-version}'
427                 goals: >
428                     org.apache.maven.plugins:maven-dependency-plugin:get
429                     org.apache.maven.plugins:maven-dependency-plugin:copy
430                     -V -B
431                     -Dartifact=org.opendaylight.yangide:org.opendaylight.yangide.update-site:1.1.1-SNAPSHOT:zip
432                     -DoutputDirectory=$WORKSPACE
433                 settings: '{settings}'
434                 global-settings: '{global-settings}'
435
436 - builder:
437     name: releng-generate-p2pom
438     builders:
439       - shell: !include-raw: include-raw-generate-p2pom.sh
440
441 - builder:
442     name: releng-update-p2composite-metadata
443     builders:
444       - shell: !include-raw: include-raw-update-p2composite-metadata.sh
445       - conditional-step:
446           condition-kind: file-exists
447           condition-filename: deploy-composite-repo.xml
448           condition-basedir: workspace
449           steps:
450             - maven-target:
451                 maven-version: '{maven-version}'
452                 pom: 'deploy-composite-repo.xml'
453                 goals: 'clean deploy -V -B -Dmaven.repo.local=/tmp/r'
454                 settings: '{settings}'
455                 global-settings: '{global-settings}'
456
457 - builder:
458     name: releng-stage-release
459     builders:
460       - shell: !include-raw: include-raw-stage-release.sh
461
462 - wrapper:
463     # This wrapper is required for all jobs as it configures the wrappers
464     # needed by OpenDaylight infra.
465     name: opendaylight-infra-wrappers
466     wrappers:
467       - mask-passwords
468       - config-file-provider:
469           files:
470             - file-id: npmrc
471               target: '$HOME/.npmrc'
472             - file-id: rackspace-heat
473               target: '$HOME/.config/openstack/clouds.yaml'
474       - timeout:
475           type: absolute
476           timeout: '{build-timeout}'
477           timeout-var: 'BUILD_TIMEOUT'
478           fail: true
479       - timestamps
480       - ssh-agent-credentials:
481           users:
482             - 'opendaylight-jenkins-ssh'
483       - openstack:
484           single-use: true
485
486 - builder:
487     name: packer-validate
488     builders:
489       - config-file-provider:
490           files:
491             - file-id: 'packer-cloud-env'
492               variable: 'CLOUDENV'
493       - shell: |
494           cd packer
495           varfiles="../packer/vars/*"
496           templates="../packer/templates/*"
497           provision="../packer/provision/*.sh"
498           for v in $varfiles; do
499               [[ "${v##*/}" =~ ^(cloud-env.*)$ ]] && continue
500               for t in $templates; do
501                   export PACKER_LOG="yes" && \
502                   export PACKER_LOG_PATH="packer-validate-${v##*/}-${t##*/}.log" && \
503                               packer.io validate -var-file=$CLOUDENV \
504                               -var-file=$v $t
505                   if [ $? -ne 0 ]; then
506                       break
507                   fi
508               done
509           done
510           for p in $provision; do
511               /bin/bash -n $p > provision-validate-${p##*/}.log 2>&1
512           done
513
514
515 - builder:
516     name: packer-build
517     builders:
518       - config-file-provider:
519           files:
520             - file-id: 'packer-cloud-env'
521               variable: 'CLOUDENV'
522       - shell: |
523           cd packer
524           export PACKER_LOG="yes" && \
525           export PACKER_LOG_PATH="packer-build.log" && \
526                       packer.io build -color=false -var-file=$CLOUDENV \
527                        -var-file=../packer/vars/{platform}.json \
528                        -parallel=false \
529                        ../packer/templates/{template}.json
530
531 - builder:
532     # TODO: Verify signature after downloading users public key from a locally created
533     # repository instead of the public keymesh. This requires a process in place to get ODL
534     # developers public keys into a local repository without increasing the job thoughput.
535     name: verify-gpg-signature
536     builders:
537       - shell: !include-raw: include-raw-verify-gpg-signatures.sh
538
539 - builder:
540     name: opendaylight-infra-jjbini
541     builders:
542       - config-file-provider:
543           files:
544             - file-id: 'jjbini'
545               target: '$HOME/.config/jenkins_jobs/jenkins_jobs.ini'
546
547 - builder:
548     name: distribution-check-wipe
549     # Step zero: Wipe file repositories up front.
550     builders:
551       - shell: |
552           echo "wipe r: the local Maven repository"
553           rm -rfv /tmp/r
554           echo "wipe n: the fake remote (Nexus) repository"
555           rm -rfv /tmp/n
556           echo "wipe t: the transient repository used in some manipulations"
557           rm -rfv /tmp/t
558
559 - builder:
560     name: distribution-check-build-project
561     # Step one: Online build of the project, using local repository /tmp/r/ and deploying artifacts to /tmp/n/.
562     # Ordinary SingleFeatureTest failures are detected in the verify job, so we can use "q" profile here.
563     # Arguments:
564     #   pom: Relative path to pom file to use. Typically '$GERRIT_PROJECT/pom.xml'.
565     builders:
566       - maven-target:
567           maven-version: 'mvn33'
568           pom: '{pom}'
569           goals: |
570               clean deploy dependency:tree
571               -DoutputFile=dependency_tree.txt
572               -Pq
573               -DaltDeploymentRepository=fake-nexus::default::file:///tmp/n/
574               {mvn-opts}
575           java-opts:
576             - '-Xmx4096m -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
577           settings: 'integration-settings'
578           settings-type: cfp
579           global-settings: 'odl-global-settings'
580           global-settings-type: cfp
581
582 - builder:
583     name: distribution-check-verify-groupid
584     # Step two: Verify all deployed artifacts belong to the project's groupId.
585     # This is done by moving the allowed directories out of /tmp/n and checking no files remained there.
586     # The correct directory is derived from $GERRIT_PROJECT.
587     # TODO: Verify all deployed artifacts are snapshots.
588     # Arguments:
589     #   gerrit-project: Project name as nexus URI part. Typically '$GERRIT_PROJECT'.
590     builders:
591       - shell: |
592           mkdir -p /tmp/t/org/opendaylight/{gerrit-project}
593           mv /tmp/n/org/opendaylight/{gerrit-project}/* /tmp/t/org/opendaylight/{gerrit-project}/
594           test -z "`find /tmp/n/ -type f`" || ( echo "ERROR: Mismatched groupId detected (see above)." && false )
595           rm -rf /tmp/n
596           mv /tmp/t /tmp/n
597
598 - builder:
599     name: distribution-check-download-deps
600     # Step three: Online build of integration distribution.
601     # This step is mainly used for downloading other project artifacts.
602     # Running SingleFeaturesTest here does not seem to be required, so -Pq is used again.
603     # Arguments:
604     #   dist-pom: Relative path to pom file to use. 'distribution/pom.xml' is recommended.
605     builders:
606       - maven-target:
607           maven-version: 'mvn33'
608           pom: '{dist-pom}'
609           goals: |
610               clean install dependency:tree
611               -DoutputFile=dependency_tree.txt
612               -Pq
613               {mvn-opts}
614           java-opts:
615             - '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'
616           settings: 'integration-settings'
617           settings-type: cfp
618           global-settings: 'odl-global-settings'
619           global-settings-type: cfp
620
621 - builder:
622     name: distribution-check-delete-snapshots
623     # Step four: Delete snapshot artifacts from the local repository.
624     # This is critical to detect orphaned artifacts or missing project-internal dependency declarations.
625     # Also other files related to maven repository resolution are removed,
626     # and then empty directories are removed, in order to simplify debugging.
627     builders:
628       - shell: !include-raw-escape: integration-distribution-delete-snaphot-artifacts.sh
629
630 - builder:
631     name: distribution-check-configure-remotes
632     # Now the ugly part. It seems that the only way to tell Maven 2+
633     # which remote repositories to use is via settings.xml file.
634     # So we create such a file here, but it needs most of odlparent:settings.xml
635     builders:
636       - shell: |
637           echo '
638           <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
639             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
640             xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
641             https://maven.apache.org/xsd/settings-1.0.0.xsd">
642             <profiles>
643               <profile>
644                 <id>opendaylight-release</id>
645                 <repositories>
646                   <repository>
647                     <id>opendaylight-mirror</id>
648                     <name>opendaylight</name>
649                     <url>https://nexus.opendaylight.org/content/repositories/public/</url>
650                     <releases><updatePolicy>never</updatePolicy></releases>
651                     <snapshots><enabled>false</enabled></snapshots>
652                   </repository>
653                 </repositories>
654                 <pluginRepositories>
655                   <pluginRepository>
656                     <id>opendaylight-plugin-mirror</id>
657                     <name>opendaylight-plugin</name>
658                     <url>https://nexus.opendaylight.org/content/repositories/public/</url>
659                     <releases><updatePolicy>never</updatePolicy></releases>
660                     <snapshots><enabled>false</enabled></snapshots>
661                   </pluginRepository>
662                 </pluginRepositories>
663               </profile>
664               <profile>
665                 <id>file-snapshots</id>
666                 <repositories>
667                   <repository>
668                     <id>file-snapshots</id>
669                     <name>file</name>
670                     <url>file:///tmp/n/</url>
671                     <releases><enabled>false</enabled></releases>
672                   </repository>
673                 </repositories>
674                 <pluginRepositories>
675                   <pluginRepository>
676                     <id>file-plugin-snapshots</id>
677                     <name>file-plugin</name>
678                     <url>file:///tmp/n/</url>
679                     <releases><enabled>false</enabled></releases>
680                   </pluginRepository>
681                 </pluginRepositories>
682               </profile>
683             </profiles>
684             <activeProfiles>
685               <activeProfile>file-snapshots</activeProfile>
686               <activeProfile>opendaylight-release</activeProfile>
687             </activeProfiles>
688           </settings>
689           ' > fake_remotes.xml
690           # Notes: The settings are minimal in order to detect breakage scenarios,
691           # while allowing for the following quirks:
692           # * Some plugins seem to have hardcoded repos, for example check-license looks at repository.apache.org
693           # * Some plugin artifacts (related to surefire) are not downloaded when tests are skipped.
694           # * populate-local-repo looks at oss.sonatype.org and does not store things (like guava) to /tmp/r
695
696 - builder:
697     name: distribution-check-repeat-build
698     # Step five: Repeat the distribution build but with the new settings.
699     # Here, only the project snapshot artifacts deployed to /tmp/n are available,
700     # which faithfully reproduces conditions in later verify-like job runs.
701     # We cannot use --offline, because: "Cannot access file (file:///tmp/n) in offline mode"
702     # This is where SingleFeatureTest is not skipped.
703     # Arguments:
704     #   dist-pom: Relative path to pom file to use. 'distribution/pom.xml' is recommended.
705     builders:
706       - maven-target:
707           maven-version: 'mvn33'
708           pom: '{dist-pom}'
709           goals: |
710               clean install dependency:tree
711               -DoutputFile=dependency_tree.txt -s fake_remotes.xml
712               -Pq
713               -DskipTests=false
714               {mvn-opts}
715           java-opts:
716             - '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'