File: Jenkinsfile

package info (click to toggle)
bridge-method-injector 1.25-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 228 kB
  • sloc: java: 559; xml: 204; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
/*
 * 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: 'linux', jdk: '11' ],
  [ platform: 'windows', jdk: '11' ],
  [ platform: 'linux', jdk: '17' ],
])