changed sh exec path

This commit is contained in:
s495716 2024-03-20 18:28:03 +01:00
parent 40e3135634
commit 9e80e83826

4
stats/Jenkinsfile vendored
View File

@ -10,9 +10,9 @@ pipeline {
stages { stages {
stage('Dataset statistics') { stage('Dataset statistics') {
steps { steps {
copyArtifacts filter:'cutoff_train.csv',fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts filter:'cutoff_train.csv', fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh 'chmod 777 stats/data_stats.sh' sh 'chmod 777 stats/data_stats.sh'
sh './data_stats.sh' sh './stats/data_stats.sh'
archiveArtifacts artifacts: 'train_lines.txt', followSymlinks: false archiveArtifacts artifacts: 'train_lines.txt', followSymlinks: false
} }
} }