Skip to content

Commit 16653c5

Browse files
committed
[build-windows] Update dependency version
... to keep in sync with `build-windows-toolchain` and CI environment.
1 parent 4e61c08 commit 16653c5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

utils/build-windows.bat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ setlocal enableextensions enabledelayedexpansion
2828

2929
PATH=%PATH%;%PYTHON_HOME%
3030

31-
set icu_version_major=64
32-
set icu_version_minor=2
31+
set icu_version_major=69
32+
set icu_version_minor=1
3333
set icu_version=%icu_version_major%_%icu_version_minor%
3434
set icu_version_dashed=%icu_version_major%-%icu_version_minor%
3535

@@ -138,7 +138,7 @@ endlocal
138138
:: Downloads ICU, which will be used as a dependency for Foundation.
139139
setlocal enableextensions enabledelayedexpansion
140140

141-
set file_name=icu4c-%icu_version%-Win64-MSVC2017.zip
141+
set file_name=icu4c-%icu_version%-Win64-MSVC2019.zip
142142
curl -L -O "https://github.com/unicode-org/icu/releases/download/release-%icu_version_dashed%/%file_name%" %exitOnError%
143143
:: unzip warns about the paths in the zip using slashes, which raises the
144144
:: errorLevel to 1. We cannot use exitOnError, and have to ignore errors.
@@ -154,8 +154,8 @@ endlocal
154154
:: Swift Package Manager.
155155
setlocal enableextensions enabledelayedexpansion
156156

157-
set file_name=sqlite-amalgamation-3270200.zip
158-
curl -L -O "https://www.sqlite.org/2019/%file_name%" %exitOnError%
157+
set file_name=sqlite-amalgamation-3360000.zip
158+
curl -L -O "https://www.sqlite.org/2021/%file_name%" %exitOnError%
159159
"%SystemDrive%\Program Files\Git\usr\bin\unzip.exe" -o %file_name% %exitOnError%
160160

161161
goto :eof

0 commit comments

Comments
 (0)