fix script
This commit is contained in:
parent
55e68cc2cc
commit
68debb5427
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -27,7 +27,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh "chmod u+x ./startscript1.sh"
|
sh "chmod u+x ./startscript1.sh"
|
||||||
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${env.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
|
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${env.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
|
||||||
archiveArtifacts 'data.txt'
|
archiveArtifacts artifacts: 'data.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
src/Jenkinsfile
vendored
Normal file
10
src/Jenkinsfile
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
stages {
|
||||||
|
stage('Stage 1') {
|
||||||
|
steps {
|
||||||
|
echo 'Hello world!'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
kaggle datasets download -d akash14/house-price-dataset
|
kaggle datasets download -d akash14/house-price-dataset
|
||||||
unzip -o house-price-dataset.zip
|
unzip -o house-price-dataset.zip
|
||||||
head -n $CUTOFF ./Participants_Data_HPP/Train.csv >> data.txt
|
head -n $1 ./Participants_Data_HPP/Train.csv >> data.txt
|
Loading…
Reference in New Issue
Block a user