Add jdk 8 tool to stage

This commit is contained in:
zontreck 2024-09-06 03:09:26 -07:00
parent 4891a2ba33
commit 56a0aade5e

9
Jenkinsfile vendored
View file

@ -1,5 +1,9 @@
pipeline {
agent any
agent any {
tools {
jdk 'jdk8'
}
}
options {
buildDiscarder(
@ -13,9 +17,6 @@ pipeline {
stage("Build on Linux") {
agent {
label 'linux'
tools {
jdk 'jdk8'
}
}