Installing OracleJDK 11 failed

Hey all,

A temporary fix while we are waiting for InfraOps to patch this is as follows, and please note, the must be used before the before_install script hook:

before_install:
  - curl -s "https://get.sdkman.io" | bash
  - source "$HOME/.sdkman/bin/sdkman-init.sh"
  - sdk install java 11.0.12-open
  - sdk use java 11.0.12-open

And remove the following:

jdk:
  - openjdk11

This should do the trick for now, we are still doing some heavy investigating.

1 Like