From 22c80a88893895bf0f7e7d7deb2c27f2ff483b75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20=C3=85lund?= Date: Tue, 11 Jun 2024 11:58:51 +0200 Subject: [PATCH] Only install necessary Mimer SQL components MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When installing Mimer SQL only install the parts that we need for the build. Avoid the Mimer SQL Server, DbVisuzlier, Java, documentation, and replication support. Change-Id: I4cc3fb6f77469a2a566d35483034fe1eea9d6ffd Reviewed-by: Simo Fält (cherry picked from commit 37be28e63e0c221247ad50e38b4ab93edad0cdb4) Reviewed-by: Qt Cherry-pick Bot --- coin/provisioning/common/windows/mimersql.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coin/provisioning/common/windows/mimersql.ps1 b/coin/provisioning/common/windows/mimersql.ps1 index b5e041d0..d7535c81 100644 --- a/coin/provisioning/common/windows/mimersql.ps1 +++ b/coin/provisioning/common/windows/mimersql.ps1 @@ -16,7 +16,7 @@ $mimer_dir="c:\MimerSQL" Download $url_official $url_cache $mimersqlPackage Verify-Checksum $mimersqlPackage $sha1 -Run-Executable "$mimersqlPackage" "/install InstallFolder=$mimer_dir /passive" +Run-Executable "$mimersqlPackage" "/install InstallFolder=$mimer_dir /passive ExcludeDbVisualizer=1 ExcludeJava=1 ExcludeServer=1 ExcludeDocumentation=1 ExcludeReplication=1" Set-EnvironmentVariable "MIMERSQL_DEV_ROOT" "$mimer_dir\dev"