Skip to content

Commit

Permalink
Fixed missing Java 17 installation on deploy job (#957)
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Patierno <[email protected]>
  • Loading branch information
ppatierno authored Dec 20, 2024
1 parent 47435a8 commit 659a1ef
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .azure/templates/jobs/deploy_java.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
jobs:
- job: 'deploy_java'
displayName: 'Deploy Java'
# Strategy for the job
strategy:
matrix:
'java-17':
image: 'Ubuntu-22.04'
jdk_version: '17'
main_build: 'true'
# Set timeout for jobs
timeoutInMinutes: 60
# Base system
pool:
vmImage: 'Ubuntu-22.04'
# Pipeline steps
steps:
- template: '../steps/prerequisites/install_java.yaml'
- task: DownloadPipelineArtifact@2
inputs:
source: '${{ parameters.artifactSource }}'
Expand Down

0 comments on commit 659a1ef

Please sign in to comment.