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

This commit is contained in:
Michael Wain 2024-10-04 20:20:48 +03:00
parent e77be818be
commit 8c32573183

10
Jenkinsfile vendored Normal file
View File

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