Skip to content

Commit 1952403

Browse files
dennisamelingdscho
authored andcommitted
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 ae5d5fc commit 1952403

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
@@ -164,6 +164,7 @@ jobs:
164164
vs-build:
165165
needs: ci-config
166166
if: needs.ci-config.outputs.enabled == 'yes'
167+
timeout-minutes: 15
167168
env:
168169
MSYSTEM: MINGW64
169170
NO_PERL: 1
@@ -189,6 +190,11 @@ jobs:
189190
## Unzip and remove the artifact
190191
unzip artifacts.zip
191192
rm artifacts.zip
193+
- name: initialize vcpkg
194+
uses: actions/checkout@v2
195+
with:
196+
repository: 'microsoft/vcpkg'
197+
path: 'compat/vcbuild/vcpkg'
192198
- name: download vcpkg artifacts
193199
shell: powershell
194200
run: |

0 commit comments

Comments
 (0)