Jenkinsfile - v.4 + shell_script update
This commit is contained in:
parent
b36f09f4ff
commit
5b3d557ed1
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -12,5 +12,12 @@ pipeline {
|
|||||||
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416122-mlworkshops'
|
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './s416122-mlworkshops'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('sh: Shell Script') {
|
||||||
|
steps {
|
||||||
|
sh('chmod +x ./shell_script.sh')
|
||||||
|
sh('./shell_script.sh wikiniews_results.tsv > result.txt')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
wc -l > result.log
|
wc -l $1
|
Loading…
Reference in New Issue
Block a user