bash script
This commit is contained in:
parent
aba8b4fc1e
commit
c22716725e
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -1,10 +1,19 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage("Hello") {
|
||||
steps {
|
||||
echo "Start.."
|
||||
}
|
||||
}
|
||||
stage("Check out from version control") {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
}
|
||||
|
||||
stage("Shell Script") {
|
||||
sh "chmod u+x ./startscript.sh"
|
||||
}
|
||||
}
|
||||
}
|
3
startscript.sh
Normal file
3
startscript.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user