mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-04-05 14:35:58 +00:00
Move input out of an agent tied stage
This commit is contained in:
parent
a095351e4a
commit
b6ca29e9f1
1 changed files with 9 additions and 4 deletions
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…
Add table
Add a link
Reference in a new issue