mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-03 15:29:57 +01:00
Reduce the items we are stashing and unstashing.
This commit is contained in:
parent
9d11cb04da
commit
04b2dce53a
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
|
@ -19,7 +19,7 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
success {
|
||||
stash includes: '**/target/*.jar*', name: 'windows-artifacts'
|
||||
stash includes: 'plugins/**/target/*.jar*', name: 'windows-artifacts'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -33,7 +33,7 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
success {
|
||||
stash includes: '**/target/*.jar*', name: 'linux-artifacts'
|
||||
stash includes: 'plugins/**/target/*.jar*', name: 'linux-artifacts'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -47,7 +47,7 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
success {
|
||||
stash includes: '**/target/*.jar*', name: 'osx-artifacts'
|
||||
stash includes: 'plugins/**/target/*.jar*', name: 'linux-artifacts'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -60,7 +60,6 @@ pipeline {
|
|||
steps {
|
||||
unstash 'windows-artifacts'
|
||||
unstash 'osx-artifacts'
|
||||
unstash 'linux-artifacts'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
|
|
|
|||
Loading…
Reference in a new issue