30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
Plaintext
|
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:31").inside {
|
||
|
stage('Test') {
|
||
|
checkout([$class: 'GitSCM', branches: [[name: '*/mlflow']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||
|
copyArtifacts fingerprintArtifacts: true, projectName: 's437622-training/master/', selector: buildParameter("BUILD_SELECTOR")
|
||
|
sh '''
|
||
|
#!/usr/bin/env bash
|
||
|
chmod 777 mlflow_partner.sh
|
||
|
rm -r model
|
||
|
./mlflow_partner.sh | tee output.txt
|
||
|
'''
|
||
|
archiveArtifacts 'output.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|