r7rs-tests/templates/Jenkinsfile-job-bottom

9 lines
325 B
Plaintext

sh 'cat *.log'
sh 'for f in *.log; do cp -- "$f" "reports/{{name}}-$f"; done'
sh 'ls reports'
stash name: 'reports', includes: 'reports/*'
archiveArtifacts artifacts: 'reports/*.log'
}
}
}