Skip to content

Commit

Permalink
ci: disable windows VS 2019 cpp build.
Browse files Browse the repository at this point in the history
* Due to a bug in msvc fixed in VS Community 2022 preview 2
  • Loading branch information
Mizux committed Jul 21, 2023
1 parent 85fc5eb commit 9a236a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/amd64_windows_cmake_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ jobs:
# ref: https://github.com/actions/runner-images
strategy:
matrix:
runner: [windows-2022, windows-2019]
runner: [
windows-2022,
#windows-2019,
]
fail-fast: false # Don't cancel all jobs if one fails.
runs-on: ${{ matrix.runner }}
#runs-on: windows-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/amd64_windows_make_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ jobs:
# ref: https://github.com/actions/runner-images
strategy:
matrix:
runner: [windows-2022, windows-2019]
runner: [
windows-2022,
#windows-2019,
]
fail-fast: false # Don't cancel all jobs if one fails.
runs-on: ${{ matrix.runner }}
#runs-on: windows-latest
Expand Down

0 comments on commit 9a236a5

Please sign in to comment.