quarkus
quarkus copied to clipboard
[CI] - Quarkus Platform + Quarkus main
Issue will be reopened when https://github.com/quarkusio/quarkus-platform fails to build against latest Quarkus Snapshots.
Build fixed:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/79522789
Unfortunately, the build failed:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/80440952
@lburgazzoli seems like a change in io.quarkus.undertow.runtime.UndertowDeploymentRecorder
broke one of your tests:
2020-04-17T05:15:50.7886790Z [ERROR] Tests run: 8, Failures: 0, Errors: 1, Skipped: 7, Time elapsed: 7.012 s <<< FAILURE! - in org.apache.camel.quarkus.component.http.it.HttpTest
2020-04-17T05:15:50.7893583Z [ERROR] httpsProducer{String}[1] Time elapsed: 0.015 s <<< ERROR!
2020-04-17T05:15:50.7896073Z java.lang.RuntimeException:
2020-04-17T05:15:50.7902667Z java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
2020-04-17T05:15:50.7941738Z [error]: Build step io.quarkus.undertow.deployment.UndertowBuildStep#build threw an exception: java.lang.NoSuchMethodError: 'io.quarkus.runtime.RuntimeValue io.quarkus.undertow.runtime.UndertowDeploymentRecorder.createDeployment(java.lang.String, java.util.Set, java.util.Set, io.quarkus.runtime.LaunchMode, io.quarkus.runtime.ShutdownContext, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)'
The error seems related to a different deepndency used ? because it is thrown by a quarkus build item
Hm... You are right... I'll look into it
guess the -deployment dependencies chain is from the camel deps whereas the runtime is from the platform
Most likely something like that
/cc @ppalaga as he already debugged a similar issue that led to a fix by @aloubyansky
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/82549965
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/83500076
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/83500076
I've came across this issue too: https://github.com/apache/camel-quarkus/issues/1115
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/84423345
Build fixed:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/85416323
Unfortunately, the build failed:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/95841016
Should be fixed by https://github.com/quarkusio/quarkus-platform/pull/65
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/96826203
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/97826818
@gsmet guess what happened...
Camel broke because of the DataSource change...
java.lang.RuntimeException: java.lang.NoClassDefFoundError: io/quarkus/agroal/runtime/AbstractDataSourceProducer
Although looking at the code it doesn't seem like AbstractDataSourceProducer
is being used anywhere by Camel.
We do get the datasource through CDI, i.e. we configure quarkus datasource then we retrieve it in our jdbc component
@lburgazzoli can you point me to the code that retrieves the datasource?
I did test quarkus master against camel and it does not fail for me so it looks like there's a wrong dependency pulled in
@quarkusio/devtools @gsmet
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/98836654
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/101100722
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/102155291
The latest failure should be fixed by #9231
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/103225031
The build is still failing:
- Link to latest CI run: https://github.com/quarkusio/quarkus-platform/actions/runs/104294408
Failure seems like a network issue:
2020-05-14T05:45:24.5788818Z [ERROR] Failed to execute goal on project quarkus-universe-integration-tests-camel-netty: Could not resolve dependencies for project io.quarkus:quarkus-universe-integration-tests-camel-netty:jar:999-SNAPSHOT: Could not transfer artifact org.apache.camel.quarkus:camel-quarkus-integration-test-netty:jar:1.0.0-M7 from/to central (https://repo.maven.apache.org/maven2): Transfer failed for https://repo.maven.apache.org/maven2/org/apache/camel/quarkus/camel-quarkus-integration-test-netty/1.0.0-M7/camel-quarkus-integration-test-netty-1.0.0-M7.jar: Connection timed out (Read failed) -> [Help 1]
@geoand https://github.com/quarkusio/quarkus-platform/pull/69 might help