-
Notifications
You must be signed in to change notification settings - Fork 137
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
[#3555] Device Registry JDBC native build #3598
Conversation
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/devcon\\/base.h2.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/devcon\\/base.postgresql.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/devcon\\/base.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/device\\/base.h2.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/device\\/base.postgresql.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/device\\/base.sql.yaml" }, | ||
{ "pattern": "org\\/eclipse\\/hono\\/service\\/base\\/jdbc\\/store\\/tenant\\/base.sql.yaml" }, | ||
{ "pattern": "sql\\/h2\\/01-create.tenants.sql" }, | ||
{ "pattern": "sql\\/h2\\/02-create.devices.sql" }, | ||
{ "pattern": "sql\\/postgresql\\/01-create.tenants.sql" }, | ||
{ "pattern": "sql\\/postgresql\\/02-create.devices.sql" } |
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.
maybe we can make these more generic, e.g. using wildcards that expand to all yaml
and sql
files?
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.
Done, I kept some base resource directory structure under which *.yaml and *.sql files are filtered in.
@@ -47,17 +47,19 @@ jobs: | |||
-Pbuild-native-image,metrics-prometheus -am \ | |||
-pl :hono-service-auth,:hono-service-command-router,:hono-service-device-registry-mongodb,\ | |||
:hono-adapter-mqtt,:hono-adapter-amqp,:hono-adapter-coap,:hono-adapter-http,:hono-adapter-lora,\ | |||
:hono-tests | |||
:hono-tests,:hono-service-device-registry-jdbc |
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.
would you mind putting this after :hono-service-device-registry-mongodb
?
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.
Done.
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.
LGTM
Thanks for contributing 👍
Changes needed for device registry JDBC to make native-image build succeeds and native-image integration tests run passes.