mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-04 22:52:54 +00:00
fix(spark-smoke-test): debian13 deprecated software-properties-common (#14619)
This commit is contained in:
parent
c03a77db86
commit
505655a4ba
2
.github/workflows/spark-smoke-test.yml
vendored
2
.github/workflows/spark-smoke-test.yml
vendored
@ -10,6 +10,7 @@ on:
|
|||||||
- "metadata_models/**"
|
- "metadata_models/**"
|
||||||
- "metadata-integration/java/datahub-client/**"
|
- "metadata-integration/java/datahub-client/**"
|
||||||
- "metadata-integration/java/spark-lineage"
|
- "metadata-integration/java/spark-lineage"
|
||||||
|
- "metadata-integration/java/spark-lineage-legacy" # spark smoke tests are here
|
||||||
- ".github/workflows/spark-smoke-test.yml"
|
- ".github/workflows/spark-smoke-test.yml"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
@ -18,6 +19,7 @@ on:
|
|||||||
- "metadata_models/**"
|
- "metadata_models/**"
|
||||||
- "metadata-integration/java/datahub-client/**"
|
- "metadata-integration/java/datahub-client/**"
|
||||||
- "metadata-integration/java/spark-lineage"
|
- "metadata-integration/java/spark-lineage"
|
||||||
|
- "metadata-integration/java/spark-lineage-legacy" # spark smoke tests are here
|
||||||
- ".github/workflows/spark-smoke-test.yml"
|
- ".github/workflows/spark-smoke-test.yml"
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|||||||
@ -11,8 +11,9 @@ ARG spark_version=3.2.0
|
|||||||
ARG hadoop_version=2.7
|
ARG hadoop_version=2.7
|
||||||
|
|
||||||
RUN apt-get update -y && \
|
RUN apt-get update -y && \
|
||||||
apt-get install -y --no-install-recommends curl gnupg software-properties-common && \
|
apt-get install -y --no-install-recommends curl gnupg && \
|
||||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9 && \
|
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 && \
|
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 install /tmp/zulu-repo_1.0.0-3_all.deb && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user