Skip to content

Commit

Permalink
Add Unity catalog docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Oct 10, 2024
1 parent a98d208 commit 0c51b67
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
# TODO add test https://github.com/trinodb/trino/issues/14543
- image: phoenix5
platforms: linux/amd64,linux/arm64
- image: unity-catalog
test: unity-catalog
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ for ARCH in "${platforms[@]}"; do
elif [[ ${ENVIRONMENT} == *"polaris"* ]]; then
# TODO Add test for Polaris
test true
elif [[ ${ENVIRONMENT} == *"unity"* ]]; then
# TODO Add test for Unity
test true
elif [[ ${ENVIRONMENT} == "kerberos" ]]; then
run_kerberos_tests
elif [[ ${ENVIRONMENT} == *"hive"* ]]; then
Expand Down
4 changes: 4 additions & 0 deletions etc/compose/unity-catalog/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version: '2.0'
services:
polaris:
image: testing/unity-catalog:latest
28 changes: 28 additions & 0 deletions testing/unity-catalog/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

ARG ARCH
FROM testing/almalinux9-oj17:unlabelled$ARCH

RUN yum update -y && \
yum install -y git && \
yum clean all -y

RUN git clone https://github.com/unitycatalog/unitycatalog.git unity

WORKDIR unity

RUN build/sbt package

EXPOSE 8080

CMD ["bin/start-uc-server"]

0 comments on commit 0c51b67

Please sign in to comment.