From a9b7601348c35c43c618f1b9ec42e4d5868266d5 Mon Sep 17 00:00:00 2001 From: Billy O'Neal Date: Mon, 4 Nov 2024 10:14:40 -0800 Subject: [PATCH] Add minimal test-modified-ports workflow. (#41954) --- .github/workflows/test_modified_ports.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test_modified_ports.yml diff --git a/.github/workflows/test_modified_ports.yml b/.github/workflows/test_modified_ports.yml new file mode 100644 index 0000000000..27c90a6364 --- /dev/null +++ b/.github/workflows/test_modified_ports.yml @@ -0,0 +1,21 @@ +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'