Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:27
Show Gist options
  • Save majorsilence/0638eced2f572d54c2ac0deee96b3628 to your computer and use it in GitHub Desktop.
Save majorsilence/0638eced2f572d54c2ac0deee96b3628 to your computer and use it in GitHub Desktop.
Java Jenkins Pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'openjdk:19-jdk-buster'
}
}
steps {
echo "building"
sh """
javac -classpath . Main.java
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment