Skip to content

Commit f80105f

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 ff3101f commit f80105f

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
@@ -129,13 +129,19 @@ jobs:
129129
vs-build:
130130
needs: ci-config
131131
if: needs.ci-config.outputs.enabled == 'yes'
132+
timeout-minutes: 15
132133
env:
133134
NO_PERL: 1
134135
GIT_CONFIG_PARAMETERS: "'user.name=CI' 'user.email=ci@git'"
135136
runs-on: windows-latest
136137
steps:
137138
- uses: actions/checkout@v2
138139
- uses: git-for-windows/setup-git-for-windows-sdk@v1
140+
- name: initialize vcpkg
141+
uses: actions/checkout@v2
142+
with:
143+
repository: 'microsoft/vcpkg'
144+
path: 'compat/vcbuild/vcpkg'
139145
- name: download vcpkg artifacts
140146
shell: powershell
141147
run: |

0 commit comments

Comments
 (0)