Skip to content

Commit 9d4e28c

Browse files
committed
GitHub Actions: Add vcpkg initialization step
This commit adds a step called "initialize vcpkg" to the GitHub Actions workflow, because we need some build scripts from vcpkg that aren't present in our vcpkg artifacts from Azure Pipelines. Signed-off-by: Dennis Ameling <[email protected]>
1 parent 897dd0f commit 9d4e28c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ jobs:
163163
vs-build:
164164
needs: ci-config
165165
if: needs.ci-config.outputs.enabled == 'yes'
166+
timeout-minutes: 15
166167
env:
167168
MSYSTEM: MINGW64
168169
NO_PERL: 1
@@ -188,6 +189,11 @@ jobs:
188189
## Unzip and remove the artifact
189190
unzip artifacts.zip
190191
rm artifacts.zip
192+
- name: initialize vcpkg
193+
uses: actions/checkout@v2
194+
with:
195+
repository: 'microsoft/vcpkg'
196+
path: 'compat/vcbuild/vcpkg'
191197
- name: download vcpkg artifacts
192198
shell: powershell
193199
run: |

0 commit comments

Comments
 (0)