mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
74366631b5
* Project "Piper" Template: framework and structure This is the first in a series of Pull-Requests to provide a fully functional Pipeline template into the library. This PR contains: * general Pipeline structure incl. tests * Pipeline initialization incl. tests * Hollow pipeline stages incl. tests * first set of default values * add gitUrls to commonPipelineEnvironment * set correct git information on commonPipelineEnvironment
15 lines
214 B
YAML
15 lines
214 B
YAML
Init:
|
|
unstash: []
|
|
stashes:
|
|
- name: "source"
|
|
includes: "**/*"
|
|
excludes: ".pipeline/**"
|
|
|
|
'Central Build':
|
|
unstash: ['source']
|
|
stashes: []
|
|
|
|
'Pull-Request Voting':
|
|
unstash: ['source']
|
|
stashes: []
|