mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-13 10:41:49 +08:00
24 lines
551 B
YAML
24 lines
551 B
YAML
name: Test Modified Ports
|
|
on:
|
|
push:
|
|
branches:
|
|
- onboard-actions
|
|
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'
|