-
Notifications
You must be signed in to change notification settings - Fork 291
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
keycloak/26.0.0 package update #30043
Conversation
octo-sts
bot
commented
Oct 4, 2024
Open AI suggestions to solve the build error:
|
keycloak/keycloak#32824 related upstream issue |
The build will still fail until the bitnami container release keycloke 26. it is still in 25 https://github.com/bitnami/containers/tree/main/bitnami/keycloak |
Open AI suggestions to solve the build error:
|
Open AI suggestions to solve the build error:
|
The package build is failing because the bitnami container did not release for keycloke 26. it is still in 25 https://github.com/bitnami/containers/tree/main/bitnami/keycloak But the error we are encountering is different for x86 and aarch64. The clear distinction we can make here by looking at the log difference, x86 is failing in the subpackage pipeline but in aarch64 it is failing in the main package pipeline |
Hey @debasishbsws. I don't expect this will be all the changes necessary for Keycloak v26 (which is a significant update and a LOT of changes), but fixed up a couple of things in this commit: 09deaab |
Open AI suggestions to solve the build error:
|
09deaab
to
b815b4d
Compare
Open AI suggestions to solve the build error:
|
Signed-off-by: wolfi-bot <[email protected]>
…js/pom.xml (No such file or directory) In this version 26.x upstream have Stop statically serving Keycloak JS from the Keycloak server and because of this we do not have a keycloak-js-adapter-jar child module to build upstream issue: keycloak/keycloak#32820 Signed-off-by: debasishbsws <[email protected]>
Signed-off-by: debasishbsws <[email protected]>
… which are both used by Keycloak v26 Signed-off-by: Mark McCormick <[email protected]>
b815b4d
to
f825843
Compare
Open AI suggestions to solve the build error:
|
it is failing in arm in the part
|
Signed-off-by: Debasish Biswas <[email protected]>
Guessing but it might be related to the same issue @kranurag7 is talking about in trino package-update PR
|
Gen AI suggestions to solve the build error:
|
that makes sense, what we should do here? |
It seems like for the hadoop-3.3 package we are skiping the UI build for aarch64 - if: ${{build.arch}} == "aarch64"
runs: |
mvn -Pdist,native,src -DskipTests -Denforcer.skip=true -Dtar -Dmaven.javadoc.skip=true -Drequire.openssl -Drequire.fuse -Drequire.snappy clean package -e -X
- if: ${{build.arch}} == "x86_64"
runs: |
mvn -Pdist,yarn-ui,native,src -DskipTests -Denforcer.skip=true -Dtar -Dmaven.javadoc.skip=true -Drequire.openssl -Drequire.fuse -Drequire.snappy clean package -e -X Not sure if that is possible here or not. or if there is another approach. |
superseded by #31438 |