1
This commit is contained in:
parent
d7dc7bb848
commit
2b8a2215d8
@ -7,13 +7,9 @@ ARG KAGGLE_KEY
|
|||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
RUN pip install --user kaggle
|
RUN pip install --user kaggle
|
||||||
|
|
||||||
RUN pip install --user pandas
|
RUN pip install --user pandas
|
||||||
|
|
||||||
RUN pip install --user sklearn
|
RUN pip install --user sklearn
|
||||||
|
|
||||||
COPY KaggleV2-May-2016.csv ./
|
COPY KaggleV2-May-2016.csv ./
|
||||||
|
|
||||||
COPY create_data.py ./
|
COPY create_data.py ./
|
||||||
|
|
||||||
COPY stats_data.py ./
|
COPY stats_data.py ./
|
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -40,8 +40,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage("Data Preparation") {
|
stage("Data Preparation") {
|
||||||
steps {
|
steps {
|
||||||
sh 'echo "PREPARATION"'
|
|
||||||
sh "./preparation.sh"
|
|
||||||
sh "python create_data.py"
|
sh "python create_data.py"
|
||||||
archiveArtifacts 'KaggleV2-May-2016.csv'
|
archiveArtifacts 'KaggleV2-May-2016.csv'
|
||||||
}
|
}
|
||||||
@ -49,8 +47,7 @@ pipeline {
|
|||||||
stage("Statistics") {
|
stage("Statistics") {
|
||||||
steps {
|
steps {
|
||||||
sh 'echo "STATISTICS"'
|
sh 'echo "STATISTICS"'
|
||||||
sh "./statistics.sh"
|
sh "python stats_data.py"
|
||||||
archiveArtifacts 'statistics.csv'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user