fix(spark-smoke-test): debian13 deprecated software-properties-common (#14619)

This commit is contained in:
Chakru 2025-09-02 19:58:02 +05:30 committed by GitHub
parent c03a77db86
commit 505655a4ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,7 @@ on:
- "metadata_models/**"
- "metadata-integration/java/datahub-client/**"
- "metadata-integration/java/spark-lineage"
- "metadata-integration/java/spark-lineage-legacy" # spark smoke tests are here
- ".github/workflows/spark-smoke-test.yml"
pull_request:
branches:
@ -18,6 +19,7 @@ on:
- "metadata_models/**"
- "metadata-integration/java/datahub-client/**"
- "metadata-integration/java/spark-lineage"
- "metadata-integration/java/spark-lineage-legacy" # spark smoke tests are here
- ".github/workflows/spark-smoke-test.yml"
release:
types: [published]

View File

@ -11,8 +11,9 @@ ARG spark_version=3.2.0
ARG hadoop_version=2.7
RUN apt-get update -y && \
apt-get install -y --no-install-recommends curl gnupg software-properties-common && \
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9 && \
apt-get install -y --no-install-recommends curl gnupg && \
curl -s https://repos.azul.com/azul-repo.key | gpg --dearmor -o /usr/share/keyrings/azul.gpg && \
echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zulu/deb stable main" | tee /etc/apt/sources.list.d/zulu.list && \
curl https://cdn.azul.com/zulu/bin/zulu-repo_1.0.0-3_all.deb -o /tmp/zulu-repo_1.0.0-3_all.deb && \
apt-get install /tmp/zulu-repo_1.0.0-3_all.deb && \
apt-get update && \