partybot/Jenkinsfile

9 lines
122 B
Text
Raw Normal View History

2022-11-10 22:30:35 -08:00
pipeline {
agent { label 'snaps' }
stages {
stage('snap') {
2022-11-12 18:18:23 -08:00
sh 'echo hello'
2022-11-10 22:30:35 -08:00
}
}
}