Merge remote-tracking branch 'origin/master'

This commit is contained in:
Grahame Grieve 2023-04-04 09:20:06 +10:00
commit 89d263e58a
3 changed files with 14 additions and 10 deletions

View File

@ -23,6 +23,6 @@ jobs:
# Run the check for bidi characters.
- name: Check for bidi characters
id: bidi_check
uses: HL7/bidi-checker-action@v1.5
uses: HL7/bidi-checker-action@v1.9
- name: Get the output time
run: echo "The time was ${{ steps.bidi_check.outputs.time }}"

View File

@ -0,0 +1,10 @@
parameters:
- name: targetModule
displayName: 'Target module in project'
type: string
steps:
- task: Cache@2
inputs:
key: maven | $(Build.BuildId) | targets | "${{ parameters.targetModule }}"
path: $(System.DefaultWorkingDirectory)/${{ parameters.targetModule }}/target/

View File

@ -1,8 +1,3 @@
# Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger: none
pool:
@ -20,10 +15,9 @@ jobs:
inputs:
key: maven | $(Build.BuildId) | artifacts
path: $(MAVEN_CACHE_FOLDER)
- task: Cache@2
inputs:
key: maven | $(Build.BuildId) | targets
path: $(System.DefaultWorkingDirectory)/org.hl7.fhir.convertors/target/**, $(System.DefaultWorkingDirectory)/org.hl7.fhir.utilities/target/**
- template: cache-target-directory-task.yml
parameters:
targetModule: org.hl7.fhir.convertors
- task: Bash@3
inputs:
targetType: 'inline'