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

22
Jenkinsfile vendored
View File

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