Skip to content

Commit

Permalink
Update Mimer SQL macOS binaries
Browse files Browse the repository at this point in the history
The Mimer SQL macOS binaries had a problem fixed in version
11.0.8E. Update provisioning script with new version. Since Mimer SQL
on macOS is now universal binary only, remove the arm64 and x86_64
versions.

Fixes: QTQAINFRA-6559
Pick-to: 6.8
Change-Id: I7e202ffc945167db79430846571cd7e1bb5158f6
Reviewed-by: Elias Toivola <[email protected]>
Reviewed-by: Tor Arne Vestbø <[email protected]>
  • Loading branch information
fredrikalund committed Sep 9, 2024
1 parent 2dc7eaf commit 90308d8
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions coin/provisioning/common/macos/mimersql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,11 @@ os="$1"
source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh"
source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh"

mimerSqlVersion="11.0.7G"
if [ "$os" = "macos" ]; then
arch=$(uname -m)
if [ "$arch" = "x86_64" ]; then
mimerSqlPackageName="mimersql-110_x86_64.tgz"
SHA1="d748f87b72e7188c527f131db2590f552f18f544"
else
mimerSqlPackageName="mimersql-110_arm64.tgz"
SHA1="f209c97074d096e50e637441073e8aa355c5116e"
fi
else
mimerSqlPackageName="mimersql-110_universal.tgz"
SHA1="eab32be623f1cbde7c29cea0f0ca4332b8ca502b"
fi
mimerSqlVersion="11.0.8E"

mimerSqlPackageName="mimersql-1108E_universal.tgz"
SHA1="8077db02be2b54147eb4a48ce4a7a2ff1159fb4d"


PrimaryUrl="http://ci-files01-hki.ci.qt.io/input/mac/$mimerSqlPackageName"
AltUrl="https://install.mimer.com/qt/macOS/$mimerSqlPackageName"
Expand Down

0 comments on commit 90308d8

Please sign in to comment.