Files
test_play/Jenkinsfile
JonnyBravo e1849e4b5b
Some checks failed
test/pipeline/head There was a failure building this commit
added
2023-03-17 08:39:49 +01:00

14 lines
199 B
Groovy

pipeline {
agent none
stages{
stage('Setting the variables values') {
agent any
steps {
bash '''#!/bin/bash
echo "hello world"
'''
}
}
}
}