Skip to content

Commit

Permalink
Fixed CI image for MSSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
altvod committed Nov 13, 2023
1 parent 29bb44b commit 1b1282b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 17 deletions.
2 changes: 1 addition & 1 deletion ci/get_base_img_hash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
set -eu

export LC_ALL=C
IMG_HASH_DOCKER_IMAGE_DIR="$(find $ROOT_DIR/metapkg -type f -print0 | sort -z | xargs -0 sha1sum -z | sha1sum | cut -d \ -f1)"
IMG_HASH_DOCKER_IMAGE_DIR="$(find $ROOT_DIR/metapkg $ROOT_DIR/docker_build -type f -print0 | sort -z | xargs -0 sha1sum -z | sha1sum | cut -d \ -f1)"
echo "rebuild_flag:8:$IMG_HASH_DOCKER_IMAGE_DIR" | sha1sum | cut -d \ -f1
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ RUN chmod a+x /tmp/scripts/*.sh && \
--exit-on-error \
/tmp/scripts && \
rm -rf /tmp/scripts

# Configure libraries for MSSQL
RUN cat /usr/share/tdsodbc/odbcinst.ini >> /etc/odbcinst.ini
ENV LD_LIBRARY_PATH $LD_LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/odbc
1 change: 1 addition & 0 deletions lib/dl_sqlalchemy_mssql/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# MSSQL connector for DataLens
15 changes: 0 additions & 15 deletions lib/dl_sqlalchemy_mssql/README.rst

This file was deleted.

2 changes: 1 addition & 1 deletion lib/dl_sqlalchemy_mssql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "BI MSSQL SQLAlchemy Dialect"
authors = ["DataLens Team <[email protected]>"]
packages = [{include = "dl_sqlalchemy_mssql"}]
license = "Apache 2.0"
readme = "README.rst"
readme = "README.md"


[tool.poetry.dependencies]
Expand Down

0 comments on commit 1b1282b

Please sign in to comment.