Some checks failed
test/pipeline/head There was a failure building this commit
14 lines
199 B
Groovy
14 lines
199 B
Groovy
pipeline {
|
|
agent none
|
|
stages{
|
|
stage('Setting the variables values') {
|
|
agent any
|
|
steps {
|
|
bash '''#!/bin/bash
|
|
echo "hello world"
|
|
'''
|
|
}
|
|
}
|
|
}
|
|
}
|