-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to Java 17 in the CI #19703
Switch to Java 17 in the CI #19703
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the CI logs there is:
[info] welcome to sbt 1.9.7 (Private Build Java 1.8.0_282)
So this is actually running on Java 8, because Java 17 isn't installed in the docker image and so /usr/lib/jvm/java-17/openjdk-amd64/bin doesn't exist and the java executable defaults to a java 8 installation on the PATH.
Java 17 should be installed too 🤔 (along side Java 8 and Java 21) : https://github.com/lampepfl/dotty-ci/blob/1df1746e8cf5077b7e2b87906ee3dda3b908fb20/dotty-docker/Dockerfile#L13 |
Wrong image name (Should be |
b3e4731
to
a276f4d
Compare
Note that :
|
62cb0c6
to
9481aab
Compare
9481aab
to
3c453ab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
…#19720) Closes #19712 This PR introduce a workaround for actions/runner#2033. This workaround was already introduced in #19703 in some of the jobs. `actions/checkout` has an issue filled about this too: actions/checkout#1169
Backports #19703 to the LTS branch. PR submitted by the release tooling. [skip ci]
This will unblock #19080.
Support for Java 21 will be provided by #19701 later