chore(ci): exclude duckdb from smoke test (#7458)

This commit is contained in:
Aseem Bansal 2023-03-01 19:29:02 +05:30 committed by GitHub
parent 64acf353fc
commit 555bafff1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,5 +18,7 @@ RUN apt-get update && apt-get install -y \
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y openjdk-11-jdk
COPY . /datahub-src
RUN cd /datahub-src && \
./gradlew :metadata-ingestion:installDev
RUN cd /datahub-src/datahub-ingestion && \
sed -i.bak "s/__version__ = \"0.0.0.dev0\"/__version__ = \"$RELEASE_VERSION\"/" src/datahub/__init__.py && \
cat src/datahub/__init__.py && \
pip install ".[all]"