22 lines
624 B
Plaintext
22 lines
624 B
Plaintext
node {
|
|
checkout scm
|
|
|
|
def local_image = docker.build("local-image")
|
|
|
|
local_image.inside {
|
|
stage('Build') {
|
|
checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]])
|
|
|
|
copyArtifacts filter: 'src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv',
|
|
fingerprintArtifacts: true,
|
|
projectName: 's452639-create-dataset',
|
|
selector: buildParameter('BUILD_SELECTOR'),
|
|
target: 'src/'
|
|
|
|
sh 'cd src; ./stats.py > stats.txt'
|
|
archiveArtifacts artifacts: 'stats.txt', followSymlinks: false
|
|
}
|
|
}
|
|
}
|
|
|