Skip to content

Commit

Permalink
fix(ci)_: skip windows build cleanup stage
Browse files Browse the repository at this point in the history
  • Loading branch information
mendelskiv93 committed Oct 29, 2024
1 parent d99fdf1 commit 5a568e2
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions _assets/ci/Jenkinsfile.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,14 @@ pipeline {
}
}
}
stage('Cleanup') {
steps {
script {
cleanTmp()
}
}
}
} // stages
post {
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
cleanup { cleanWs() }
cleanup {
cleanWs()
cleanTmp()
}
} // post
} // pipeline

Expand Down

0 comments on commit 5a568e2

Please sign in to comment.