Skip to content

Commit

Permalink
Update java version on opencue base ci image
Browse files Browse the repository at this point in the history
Sonarqube now requires java17 to run on top of JacocoTest. Opencue's latest release is compatible with jdk17 so updating the base image should be harmless. 

Signed-off-by: Diego Tavares <dtavares@imageworks.com>
  • Loading branch information
DiegoTavares authored and jfpanisset committed Oct 4, 2024
1 parent 08a45dc commit 46da5f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ci-opencue/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ docker_from: ${ASWF_ORG}/ci-common:${CI_COMMON_VERSION}-clang${ASWF_CLANG_MAJOR_
docker_package_version: $ASWF_VFXPLATFORM_VERSION
docker_commands: |
RUN sudo yum -y install \
java-11-openjdk.x86_64 \
java-11-openjdk-devel.x86_64
RUN sudo alternatives --set java java-11-openjdk.x86_64 && \
sudo alternatives --set javac java-11-openjdk.x86_64 && \
sudo alternatives --set jre_openjdk java-11-openjdk.x86_64
java-17-openjdk.x86_64 \
java-17-openjdk-devel.x86_64
RUN sudo alternatives --set java java-17-openjdk.x86_64 && \
sudo alternatives --set javac java-17-openjdk.x86_64 && \
sudo alternatives --set jre_openjdk java-17-openjdk.x86_64

0 comments on commit 46da5f1

Please sign in to comment.