jenkins init
All checks were successful
gitea/JBunker/pipeline/head This commit looks good

This commit is contained in:
Michael Wain 2024-10-11 02:59:54 +03:00
parent 92e3011b46
commit f25ca4a5d0

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build Project') {
steps {
build "JBunker"
}
}
}
}