8 lines
139 B
Groovy
8 lines
139 B
Groovy
stage('Setting the variables values') {
|
|
steps {
|
|
bash '''#!/bin/bash
|
|
echo "hello world"
|
|
'''
|
|
}
|
|
}
|