Guest User

Untitled

a guest
Nov 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. pipeline {
  2.  
  3. agent any
  4.  
  5. stages {
  6.  
  7. stage("create file") {
  8. steps {
  9. touch "testfile.log"
  10. }
  11. }
  12.  
  13. stage("when file last modified after job") {
  14. when {
  15. expression {
  16. findFiles(glob: "testfile.log")?.first()?.lastModified >
  17. currentBuild.startTimeInMillis
  18. }
  19. }
  20. steps {
  21. echo "i ran"
  22. }
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment