Skip to content

Commit 4c00095

Browse files
committed
package/ci: use Ninja 1.11 on Windows to fix it with UTF-8 filenames.
1 parent 82c1d0c commit 4c00095

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

package/ci/appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ environment:
111111
install:
112112
# Ninja. `cinst ninja` started 503ing in late November 2019 and wasn't really
113113
# reliable before either. So install by hand, as that's reliable always.
114-
- IF NOT EXIST %APPVEYOR_BUILD_FOLDER%\ninja-win.zip appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-win.zip
114+
# Version 1.11 needed to make UTF-8 work with corrade_add_resource():
115+
# https://github.com/ninja-build/ninja/pull/1915
116+
- IF NOT EXIST %APPVEYOR_BUILD_FOLDER%\ninja-win.zip appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-win.zip
115117
- 7z x ninja-win.zip -oC:/tools/ninja
116118

117119
- set PATH=C:/tools/ninja;%PATH%

0 commit comments

Comments
 (0)