File: Jenkinsfile

package info (click to toggle)
access-modifier-checker 1.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 556 kB
  • sloc: xml: 1,168; java: 1,040; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
/*
 * While this is not a plugin, it is much simpler to reuse the pipeline code for CI. This allows for
 * easy Linux/Windows testing and produces incrementals. The only feature that relates to plugins is
 * allowing one to test against multiple Jenkins versions.
 */
buildPlugin(useContainerAgent: true, configurations: [
  [ platform: 'windows', jdk: '17' ],
  [ platform: 'linux', jdk: '21' ]
])