Skip to content

Commit

Permalink
Add Jenkinsfile (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Nov 17, 2022
1 parent 5d04bf8 commit 5c0841d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,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' ],
])

0 comments on commit 5c0841d

Please sign in to comment.