Karolina Oparczyk
76f867a285
Some checks failed
s434765-evaluation/pipeline/head There was a failure building this commit
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
node {
|
|
stage('Preparation') {
|
|
|
|
properties([
|
|
parameters([
|
|
buildSelector(defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying datasets',
|
|
name: 'BUILD_DATASET'),
|
|
buildSelector(defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying model',
|
|
name: 'BUILD_MODEL')
|
|
])
|
|
]
|
|
)
|
|
|
|
}
|
|
stage('Clone repo') {
|
|
docker.image("karopa/ium:12").inside {
|
|
stage('Test') {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-create-dataset', selector: buildParameter("BUILD_DATASET")
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434765-training/master/', selector: buildParameter("BUILD_MODEL")
|
|
sh '''
|
|
#!/usr/bin/env bash
|
|
chmod 777 evaluate_network.py
|
|
python3 evaluate_network.py | tee output.txt
|
|
'''
|
|
archiveArtifacts 'output.txt'
|
|
}
|
|
}
|
|
}
|
|
}
|