File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -124,12 +124,12 @@ jobs:
124
124
env :
125
125
VCPKG_PATH : ${{env.VCPKG_PATH}}
126
126
with :
127
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
127
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
128
128
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
129
129
vcpkgJsonGlob : ' **/vcpkg.json'
130
130
131
131
- name : Install dependencies
132
- run : vcpkg install
132
+ run : vcpkg install --triplet x64-windows
133
133
134
134
- name : Install Ninja
135
135
if : matrix.generator == 'Ninja'
@@ -212,12 +212,12 @@ jobs:
212
212
- name : Initialize vcpkg
213
213
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
214
214
with :
215
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
215
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
216
216
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
217
217
vcpkgJsonGlob : ' **/vcpkg.json'
218
218
219
219
- name : Install dependencies
220
- run : vcpkg install
220
+ run : vcpkg install --triplet x64-windows
221
221
222
222
- name : Install Ninja
223
223
uses : seanmiddleditch/gha-setup-ninja@96bed6edff20d1dd61ecff9b75cc519d516e6401 # v5
Original file line number Diff line number Diff line change @@ -260,12 +260,12 @@ jobs:
260
260
- name : Initialize vcpkg
261
261
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
262
262
with :
263
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
263
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
264
264
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
265
265
vcpkgJsonGlob : ' **/vcpkg.json'
266
266
267
267
- name : Install dependencies
268
- run : vcpkg install
268
+ run : vcpkg install --triplet x64-windows
269
269
shell : pwsh # Specifies PowerShell as the shell for running the script.
270
270
271
271
- name : Get UMF version
Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ jobs:
48
48
if : matrix.os == 'windows-latest'
49
49
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
50
50
with :
51
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
51
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
52
52
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
53
53
vcpkgJsonGlob : ' **/vcpkg.json'
54
54
55
55
- name : " [Win] Install dependencies"
56
56
if : matrix.os == 'windows-latest'
57
57
run : |
58
- vcpkg install
58
+ vcpkg install --triplet x64-windows
59
59
python3 -m pip install -r third_party/requirements.txt
60
60
61
61
- name : " [Lin] Install apt packages"
Original file line number Diff line number Diff line change @@ -118,14 +118,14 @@ jobs:
118
118
- name : Initialize vcpkg
119
119
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
120
120
with :
121
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
121
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
122
122
vcpkgDirectory : ${{github.workspace}}/vcpkg
123
123
vcpkgJsonGlob : ' **/vcpkg.json'
124
124
125
125
# NOTE we use vcpkg setup from "tag" version
126
126
- name : Install dependencies
127
127
working-directory : ${{github.workspace}}/tag_version
128
- run : vcpkg install
128
+ run : vcpkg install --triplet x64-windows
129
129
shell : pwsh # Specifies PowerShell as the shell for running the script.
130
130
131
131
- name : Configure "tag" UMF build
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ jobs:
60
60
if : matrix.os == 'windows-latest'
61
61
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
62
62
with :
63
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
63
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
64
64
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
65
65
vcpkgJsonGlob : ' **/vcpkg.json'
66
66
67
67
- name : Install dependencies (windows-latest)
68
68
if : matrix.os == 'windows-latest'
69
- run : vcpkg install
69
+ run : vcpkg install --triplet x64-windows
70
70
shell : pwsh # Specifies PowerShell as the shell for running the script.
71
71
72
72
- name : Install dependencies
Original file line number Diff line number Diff line change @@ -68,13 +68,13 @@ jobs:
68
68
if : matrix.os == 'Windows'
69
69
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
70
70
with :
71
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
71
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
72
72
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
73
73
vcpkgJsonGlob : ' **/vcpkg.json'
74
74
75
75
- name : " [Win] Install dependencies"
76
76
if : matrix.os == 'Windows'
77
- run : vcpkg install
77
+ run : vcpkg install --triplet x64-windows
78
78
79
79
# note: disable all providers except the one being tested
80
80
# '-DCMAKE_SUPPRESS_REGENERATION=ON' is the WA for the error: "CUSTOMBUILD : CMake error : Cannot restore timestamp"
Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ jobs:
106
106
- name : Initialize vcpkg
107
107
uses : lukka/run-vcpkg@5e0cab206a5ea620130caf672fce3e4a6b5666a1 # v11.5
108
108
with :
109
- vcpkgGitCommitId : 3dd44b931481d7a8e9ba412621fa810232b66289
109
+ vcpkgGitCommitId : ea2a964f9303270322cf3f2d51c265ba146c422d # 1.04.2025
110
110
vcpkgDirectory : ${{env.BUILD_DIR}}/vcpkg
111
111
vcpkgJsonGlob : ' **/vcpkg.json'
112
112
113
113
- name : Install dependencies
114
- run : vcpkg install
114
+ run : vcpkg install --triplet x64-windows
115
115
shell : pwsh # Specifies PowerShell as the shell for running the script.
116
116
117
117
# TODO enable level zero provider
You can’t perform that action at this time.
0 commit comments