Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
uses: ./.github/actions/ci-incr-build-cache-prepare
- name: Image build
env: *gradle_env_vars
run: ./gradlew :polaris-server:assemble -Dquarkus.container-image.build=true
run: ./gradlew :polaris-server:assemble -PNonRESTCatalogs=HIVE,HADOOP -Dquarkus.container-image.build=true
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a good idea. Let's see if we have stable build/test here.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, that's then no longer what we publish as our official images.
WDYT of having a separate job instead of changing the existing one?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can do that if you think that's better. Or we can even have an extra step in build-checks job, which would execute ./gradlew :polaris-server:assemble :polaris-server:quarkusAppPartsBuild -PNonRESTCatalogs=HIVE,HADOOP.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we will need a check at build time instead of publishing. If the publish CI reuse this one, we need to separate it out.

- name: Save image to tar
run: |
docker save apache/polaris:latest | zstd -T0 > polaris-image.tar.zst
Expand Down
Loading