28 lines
1.2 KiB
Plaintext
28 lines
1.2 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:03").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 get_stats.sh
|
|
./get_stats.sh | tee output.txt
|
|
'''
|
|
archiveArtifacts 'output.txt'
|
|
}
|
|
}
|
|
}
|
|
} |