bash script

This commit is contained in:
s444417 2022-03-24 17:40:59 +01:00
parent aba8b4fc1e
commit c22716725e
2 changed files with 12 additions and 0 deletions

9
Jenkinsfile vendored
View File

@ -1,10 +1,19 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage("Hello") {
steps {
echo "Start.."
}
}
stage("Check out from version control") { stage("Check out from version control") {
steps { steps {
checkout scm checkout scm
} }
} }
stage("Shell Script") {
sh "chmod u+x ./startscript.sh"
}
} }
} }

3
startscript.sh Normal file
View File

@ -0,0 +1,3 @@
kaggle datasets download -d akash14/house-price-dataset
unzip -o house-price-dataset.zip
head -n 10 ./Participants_Data_HPP/Train.csv >> data.txt