This commit is contained in:
parent
5934c9b496
commit
b0f4e521c2
@ -19,21 +19,34 @@ node {
|
|||||||
|
|
||||||
}
|
}
|
||||||
stage('Clone repo') {
|
stage('Clone repo') {
|
||||||
docker.image("karopa/ium:20").inside {
|
try {
|
||||||
stage('Test') {
|
docker.image("karopa/ium:20").inside {
|
||||||
checkout([$class: 'GitSCM', branches: [[name: '*/evaluation']], 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_DATASET")
|
stage('Test') {
|
||||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training/' + params.BRANCH + '/', selector: buildParameter("BUILD_MODEL")
|
checkout([$class: 'GitSCM', branches: [[name: '*/evaluation']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-evaluation/evaluation/', selector: lastSuccessful()
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_DATASET")
|
||||||
sh '''
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training/' + params.BRANCH + '/', selector: buildParameter("BUILD_MODEL")
|
||||||
#!/usr/bin/env bash
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-evaluation/evaluation/', selector: lastSuccessful()
|
||||||
chmod 777 evaluate_network.py
|
sh '''
|
||||||
python3 evaluate_network.py | tee output.txt
|
#!/usr/bin/env bash
|
||||||
'''
|
chmod 777 evaluate_network.py
|
||||||
archiveArtifacts 'output.txt'
|
python3 evaluate_network.py | tee output.txt
|
||||||
archiveArtifacts 'rmse.txt'
|
'''
|
||||||
archiveArtifacts 'evaluation.png'
|
archiveArtifacts 'output.txt'
|
||||||
|
archiveArtifacts 'rmse.txt'
|
||||||
|
archiveArtifacts 'evaluation.png'
|
||||||
|
}
|
||||||
|
def data = readFile(file: 'rmse.txt').split("/n")
|
||||||
|
emailext body: 'Successful evaluation ${data[data.size()]}',
|
||||||
|
subject: "s434765",
|
||||||
|
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (e) {
|
||||||
|
emailext body: 'Failed evaluation',
|
||||||
|
subject: "s434765",
|
||||||
|
to: "26ab8f35.uam.onmicrosoft.com@emea.teams.ms"
|
||||||
|
throw e
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user