added
All checks were successful
test/pipeline/head This commit looks good

This commit is contained in:
2023-03-17 08:44:59 +01:00
parent e1849e4b5b
commit 7731317c1d

28
Jenkinsfile vendored
View File

@@ -1,13 +1,21 @@
pipeline {
agent none
stages{
stage('Setting the variables values') {
agent any
steps {
bash '''#!/bin/bash
echo "hello world"
'''
agent none
stages {
stage ('Hello') {
agent any
steps {
echo 'Hello, '
sh '''#!/bin/bash
echo "Hello from bash"
echo "Who I'm $SHELL"
'''
}
}
}
}
}
}