Added sh file
This commit is contained in:
parent
089629d6a0
commit
88b5242851
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -18,6 +18,13 @@ pipeline {
|
||||
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Run Script') {
|
||||
steps {
|
||||
sh 'take_data.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Goodbye!') {
|
||||
steps {
|
||||
echo 'Goodbye!'
|
||||
|
2
take_data.sh
Normal file
2
take_data.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
echo "Hello World"
|
Loading…
Reference in New Issue
Block a user