diff --git a/Jenkinsfile b/Jenkinsfile index bb9385d..1bb033d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" + } } } \ No newline at end of file diff --git a/startscript.sh b/startscript.sh new file mode 100644 index 0000000..83f0f38 --- /dev/null +++ b/startscript.sh @@ -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 \ No newline at end of file