JenkinsfileNeural
All checks were successful
s434765-training/pipeline/head This commit looks good

This commit is contained in:
Karolina Oparczyk 2021-05-15 19:53:42 +02:00
parent ba9b25f4c3
commit aa32f7db55
2 changed files with 30 additions and 2 deletions

View File

@ -7,8 +7,8 @@ RUN apt install -y unzip
RUN pip3 install pandas
RUN pip3 install kaggle
RUN pip3 install tensorflow
COPY ./get_data.sh ./
COPY get_data.py ./
COPY ./data_train ./
COPY ./data_test ./
COPY ./neural_network.sh ./
COPY ./neural_network.py ./
RUN mkdir /.kaggle

28
JenkinsfileNeural Normal file
View File

@ -0,0 +1,28 @@
node {
stage('Preparation') {
properties([
parameters([
buildSelector(defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
])
]
)
}
stage('Clone repo') {
docker.image("karopa/ium:04").inside {
stage('Test') {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_SELECTOR")
sh '''
#!/usr/bin/env bash
chmod 777 neural_network.sh
./neural_network.sh | tee output.txt
'''
archiveArtifacts 'output.txt'
}
}
}
}