mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-06 12:58:14 +00:00
233d0ecf86
* Refactor master pipeline * Try cacheing target too * Setup signing as template * Change to steps * Actually use cached maven for deploy * Optionally set up signing files during initial build * Split deployment to parallel jobs * Split deployment to parallel jobs * Add more signing options * Shift settings.xml to temp directory * Shift settings.xml to temp directory 2 * Temporary debug mode * Skip install... we already did it * deploy:deploy * jar:jar * Add deploy improvements to github deploy * Remove debug in sonatype deploy
8 lines
246 B
YAML
8 lines
246 B
YAML
steps:
|
|
- ${{ each value in parameters.modules }}:
|
|
- task: Cache@2
|
|
displayName: Cache ${{ value }} target
|
|
inputs:
|
|
key: maven | $(Build.BuildId) | targets | "${{ value }}"
|
|
path: $(System.DefaultWorkingDirectory)/${{ value }}/
|