pl-1/Jenkinsfile

13 lines
164 B
Text
Raw Normal View History

2025-10-06 11:40:37 -03:00
pipeline {
agent any
stages {
2025-10-07 13:46:46 -03:00
stage('Stage Test')
{
2025-10-06 11:40:37 -03:00
steps {
2025-10-07 13:46:46 -03:00
echo 'Hello World'
2025-10-06 11:40:37 -03:00
}
}
}
}