mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 11:59:01 +08:00
22 lines
524 B
YAML
22 lines
524 B
YAML
|
name: Test Modified Ports
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
Windows:
|
||
|
runs-on:
|
||
|
- self-hosted
|
||
|
- "1ES.Pool=vcpkg-windows-wus"
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
# fetch-depth 50 tries to ensure we capture the whole history of the branch
|
||
|
fetch-depth: 50
|
||
|
|
||
|
- name: Bootstrap
|
||
|
run: ./bootstrap-vcpkg.sh
|
||
|
|
||
|
- name: Example
|
||
|
shell: pwsh
|
||
|
run: Write-Host 'Running on 1ES Hosted GitHub Runners'
|