Create Jenkinsfile

This commit is contained in:
Mihai Georgescu 2023-11-27 14:37:59 +02:00 committed by GitHub
parent d9050dbff4
commit 33f019e227
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

50
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,50 @@
pipeline {
agent any
stages {
stage('Checkstyle') {
steps {
}
}
stage('Tests') {
steps {
}
}
stage('Build') {
steps {
}
}
stage('Create docker image') {
steps {
}
}
stage('Tag the docker image') {
steps {
}
}
stage('Push to DockerHub') {
steps {
}
}
stage('Change stages') {
steps {
echo "this is the start of the new stage with the main branch"
}
}
stage('Create docker image') {
steps {
}
}
stage('Push docker image to main repository') {
steps {
}
}
}
}