We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea109ed commit 43ec913Copy full SHA for 43ec913
root/tmp/setup/sqlsrv-extension.sh
@@ -2,6 +2,14 @@
2
3
set -e
4
5
+# Debian buster (10) haven't got the arm64 packages, it seems, see:
6
+# - buster: https://packages.microsoft.com/debian/10/prod/pool/main/m/msodbcsql18/
7
+# So we won't build the extension for buster (10) images on arm64.
8
+if [[ ${TARGETPLATFORM} != "linux/amd64" ]]; then
9
+ echo "sqlsrv extension not available for ${TARGETPLATFORM} architecture, skipping"
10
+ exit 0
11
+fi
12
+
13
# Packages for build.
14
BUILD_PACKAGES="gnupg unixodbc-dev"
15
0 commit comments