stats.jenkinsfile: move artifacts to src/ directory

This commit is contained in:
Robert Bendun 2023-04-05 01:35:59 +02:00
parent b472e59860
commit af8e1b7dca
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ node {
copyArtifacts filter: 'src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv', copyArtifacts filter: 'src/stop_times.train.tsv,src/stop_times.test.tsv,src/stop_times.valid.tsv',
fingerprintArtifacts: true, fingerprintArtifacts: true,
projectName: 's452639-create-dataset', projectName: 's452639-create-dataset',
selector: buildParameter('BUILD_SELECTOR') selector: buildParameter('BUILD_SELECTOR'),
target: 'src/'
sh 'cd src; ./stats.py > stats.txt' sh 'cd src; ./stats.py > stats.txt'
archiveArtifacts artifacts: 'stats.txt', followSymlinks: false archiveArtifacts artifacts: 'stats.txt', followSymlinks: false