mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
Move input out of an agent tied stage
This commit is contained in:
parent
a095351e4a
commit
b6ca29e9f1
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
|
|
@ -102,16 +102,21 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
stage('Release') {
|
||||
agent {
|
||||
label "linux"
|
||||
}
|
||||
stage('Confirm release') {
|
||||
agent none
|
||||
steps {
|
||||
milestone(2)
|
||||
timeout(time:5, unit:'MINUTES') {
|
||||
input message: "Do you wish to release?", ok: "Release"
|
||||
input message: "Are you sure, this cannot be undone?", ok: "Release"
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Perform release') {
|
||||
agent {
|
||||
label "linux"
|
||||
}
|
||||
steps {
|
||||
milestone(3)
|
||||
unstash 'windows-natives'
|
||||
unstash 'osx-natives'
|
||||
|
|
|
|||
Loading…
Reference in a new issue