added
Some checks failed
test/pipeline/head There was a failure building this commit

This commit is contained in:
2023-03-17 08:39:49 +01:00
parent 21d0dbcb60
commit e1849e4b5b
2 changed files with 34 additions and 5 deletions

16
Jenkinsfile vendored
View File

@@ -1,7 +1,13 @@
stage('Setting the variables values') {
steps {
bash '''#!/bin/bash
echo "hello world"
'''
pipeline {
agent none
stages{
stage('Setting the variables values') {
agent any
steps {
bash '''#!/bin/bash
echo "hello world"
'''
}
}
}
}