diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2023-09-15 02:32:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 02:32:52 +0200 |
commit | 5d128d38ea98c325422d0c81e56d7743557216d0 (patch) | |
tree | 34876e3b812d232728b49cd5652b8ad414d2aad0 /apps/installer/includes/os_configs | |
parent | ecf85a2f3e5b84b46c749abfd4e9f861c09ce435 (diff) |
chore(CI): Update deps for Windows and Mac builds (#17252)
* chore(CI): Update deps for Windows and Mac builds
* Update windows.sh
* Update windows.sh
Diffstat (limited to 'apps/installer/includes/os_configs')
-rw-r--r-- | apps/installer/includes/os_configs/osx.sh | 2 | ||||
-rw-r--r-- | apps/installer/includes/os_configs/windows.sh | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/apps/installer/includes/os_configs/osx.sh b/apps/installer/includes/os_configs/osx.sh index d3f762f574..51d868f275 100644 --- a/apps/installer/includes/os_configs/osx.sh +++ b/apps/installer/includes/os_configs/osx.sh @@ -26,4 +26,4 @@ if ! command -v cmake &>/dev/null ; then fi ########################################## -brew install openssl@3 readline boost bash-completion curl unzip mysql ccache +brew install openssl@3 readline boost@1.82 bash-completion curl unzip mysql@8.1 ccache diff --git a/apps/installer/includes/os_configs/windows.sh b/apps/installer/includes/os_configs/windows.sh index 227a0258db..7687739d70 100644 --- a/apps/installer/includes/os_configs/windows.sh +++ b/apps/installer/includes/os_configs/windows.sh @@ -23,7 +23,8 @@ else fi choco install -y --skip-checksums $INSTALL_ARGS cmake.install -y --installargs 'ADD_CMAKE_TO_PATH=System' -choco install -y --skip-checksums $INSTALL_ARGS visualstudio2022-workload-nativedesktop openssl -choco install -y --skip-checksums $INSTALL_ARGS boost-msvc-14.3 --version=1.79.0 -choco install -y --skip-checksums $INSTALL_ARGS mysql --version 8.0.31 +choco install -y --skip-checksums $INSTALL_ARGS visualstudio2022-workload-nativedesktop +choco install -y --skip-checksums $INSTALL_ARGS openssl --version=3.1.1 +choco install -y --skip-checksums $INSTALL_ARGS boost-msvc-14.3 --version=1.82.0 +choco install -y --skip-checksums $INSTALL_ARGS mysql --version=8.0.31 |