Add Jenkinsfile
All checks were successful
GiteaTeam/JenkinsExampl2/pipeline/head This commit looks good
GiteaTeam/JenkinsExample/pipeline/head This commit looks good

This commit is contained in:
2024-01-03 23:22:04 +08:00
commit 3008306bdb

20
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}