Created
February 13, 2022 22:27
-
-
Save majorsilence/0638eced2f572d54c2ac0deee96b3628 to your computer and use it in GitHub Desktop.
Java Jenkins Pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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