Files
JenkinsExample/Jenkinsfile
jenkins 3008306bdb
All checks were successful
GiteaTeam/JenkinsExampl2/pipeline/head This commit looks good
GiteaTeam/JenkinsExample/pipeline/head This commit looks good
Add Jenkinsfile
2024-01-03 23:22:04 +08:00

20 lines
348 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}