We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cce07a commit b1e2899Copy full SHA for b1e2899
ci/setup-msys2.yml
@@ -94,6 +94,19 @@ steps:
94
condition: not(variables['openorienteering.superbuild.msysBuildId'])
95
displayName: 'Install MSYS2 MinGW packages for OpenOrienteering Superbuild'
96
97
+- script: |
98
+ set PATH=%SUPERBUILD_INSTALL_DIR_NATIVE%\usr\bin;%WINDIR%\system32;%WINDIR%;%WINDIR%\system32\wbem
99
+ pacman --noconfirm -S --needed ^
100
+ mingw-w64-%MSYSTEM_CARCH%-wintab-sdk ^
101
+ 2>error.log
102
+ if errorlevel 1 (
103
+ type error.log 1>&2
104
+ exit /b 1
105
+ ) else (
106
+ type error.log
107
+ )
108
+ displayName: 'Install mingw-w64-wintab-sdk'
109
+
110
- script: |
111
set PATH=%SUPERBUILD_INSTALL_DIR_NATIVE%\usr\bin;%WINDIR%\system32;%WINDIR%;%WINDIR%\system32\wbem
112
pacman --noconfirm -Scc
0 commit comments