2019-03-12 23:37:47 +03:00
|
|
|
jobs:
|
2021-03-01 06:03:28 +03:00
|
|
|
- job: Windows_x64
|
2019-03-12 23:37:47 +03:00
|
|
|
pool:
|
2020-07-27 21:44:15 +03:00
|
|
|
vmImage: windows-latest
|
2019-03-12 23:37:47 +03:00
|
|
|
steps:
|
2021-08-26 12:34:09 +03:00
|
|
|
- checkout: self
|
|
|
|
submodules: true
|
|
|
|
persistCredentials: true
|
2021-02-19 08:16:51 +03:00
|
|
|
- template: "windows-steps.yml"
|
2020-07-21 23:01:19 +03:00
|
|
|
parameters:
|
2021-03-01 06:03:28 +03:00
|
|
|
architecture: "x64"
|
2022-04-20 19:09:18 +03:00
|
|
|
compilerPath: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/Llvm/x64/bin/clang-cl.exe"
|
2023-03-12 01:08:59 +03:00
|
|
|
vcpkgTriplet: "x64-windows-static"
|
2022-04-20 19:09:18 +03:00
|
|
|
vcvarsPath: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
|
2021-03-01 06:03:28 +03:00
|
|
|
- job: Windows_x86
|
2020-07-21 22:51:10 +03:00
|
|
|
pool:
|
2020-07-27 21:44:15 +03:00
|
|
|
vmImage: windows-latest
|
2020-07-21 22:51:10 +03:00
|
|
|
steps:
|
2021-08-26 12:34:09 +03:00
|
|
|
- checkout: self
|
|
|
|
submodules: true
|
|
|
|
persistCredentials: true
|
2021-02-19 08:16:51 +03:00
|
|
|
- template: "windows-steps.yml"
|
2020-07-21 22:51:10 +03:00
|
|
|
parameters:
|
2020-07-28 00:34:34 +03:00
|
|
|
architecture: "x86"
|
2022-04-20 19:09:18 +03:00
|
|
|
compilerPath: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/Llvm/bin/clang-cl.exe"
|
2023-03-12 01:08:59 +03:00
|
|
|
vcpkgTriplet: "x86-windows-static"
|
2022-04-29 08:43:22 +03:00
|
|
|
vcvarsPath: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars32.bat"
|