diff options
| author | 5an7y-Microsoft <[email protected]> | 2026-05-06 16:08:40 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-06 16:08:40 -0700 |
| commit | 9920a067bae510ea6e9ce9897b44b6708ddbb85b (patch) | |
| tree | f1dba30aa1f1a890c56ca53db1092c88546af12d /.github | |
| parent | 8e9b1b1e0f91c8084dd062314896d8ea0facd608 (diff) | |
| parent | 63a98a6d0eced10f85b9192bbf92d711af0715fc (diff) | |
Merge pull request #1377 from microsoft/user/jvalesmena/wdk2604
User/jvalesmena/wdk2604
Diffstat (limited to '.github')
| -rw-r--r-- | .github/Build-with-GitHub.md | 4 | ||||
| -rw-r--r-- | .github/workflows/ci-pr.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/Build-with-GitHub.md b/.github/Build-with-GitHub.md index c4a10962..cd1715ba 100644 --- a/.github/Build-with-GitHub.md +++ b/.github/Build-with-GitHub.md @@ -2,7 +2,7 @@ If you use GitHub to host your code, you can leverage [GitHub Actions](https://docs.github.com/en/actions) to create automated workflows to build your driver projects. -`windows-2022` runner (provided by `windows-latest`) is configured with Windows Driver Kit version 22H2 and Visual Studio 2022 off the box, so most solutions can be built by running `msbuild` directly. +`windows-2025-vs2026` runner is configured with Visual Studio 2026 off the box, so most solutions can be built by running `msbuild` directly using the WDK NuGet package. ```yaml name: Build driver solution @@ -16,7 +16,7 @@ jobs: matrix: configuration: [Debug, Release] platform: [x64] - runs-on: windows-2022 + runs-on: windows-2025-vs2026 env: Solution_Path: path\to\driver\solution.sln steps: diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 0e5825d1..6719270e 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -15,7 +15,7 @@ jobs: matrix: configuration: [Debug, Release] platform: [x64, arm64] - runs-on: windows-2022 + runs-on: windows-2025-vs2026 steps: - name: Check out repository code uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e847b35..ca2696d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: matrix: configuration: [Debug, Release] platform: [x64, arm64] - runs-on: windows-2022 + runs-on: windows-2025-vs2026 steps: - name: Check out repository code uses: actions/checkout@v4 |
