Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build.yml #8163

Merged
merged 5 commits into from
Nov 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update build.yml
Fix windows runner that don't have visual studios
  • Loading branch information
dbaileychess authored Nov 18, 2023
commit fe199e2d001bb49f938cb97c80e92a7679590f85
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

build-windows-cpp-std:
name: Build Windows C++
runs-on: windows-2022-64core
runs-on: windows-2022
strategy:
matrix:
std: [11, 14, 17, 20, 23]
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
outputs:
digests: ${{ steps.hash.outputs.hashes }}
name: Build Windows 2019
runs-on: windows-2022-64core
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

build-windows-2017:
name: Build Windows 2017
runs-on: windows-2022-64core
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
Expand All @@ -202,7 +202,7 @@ jobs:

build-windows-2015:
name: Build Windows 2015
runs-on: windows-2022-64core
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:

build-generator-windows:
name: Check Generated Code on Windows
runs-on: windows-2022-64core
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
Expand Down
Loading