Files
test_play/Jenkinsfile
JonnyBravo 7731317c1d
All checks were successful
test/pipeline/head This commit looks good
added
2023-03-17 08:44:59 +01:00

22 lines
315 B
Groovy

pipeline {
agent none
stages {
stage ('Hello') {
agent any
steps {
echo 'Hello, '
sh '''#!/bin/bash
echo "Hello from bash"
echo "Who I'm $SHELL"
'''
}
}
}
}