testing/Jenkinsfile

11 lines
118 B
Plaintext
Raw Normal View History

2024-07-30 19:35:50 -04:00
pipeline {
agent any
stages {
stage('Example') {
steps {
echo 'hello world'
}
}
2024-07-30 19:07:09 -04:00
}
}