diff options
| author | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2021-08-25 11:11:03 +0900 |
|---|---|---|
| committer | Kazuhiro NISHIYAMA <znz@users.noreply.github.com> | 2021-08-26 19:47:48 +0900 |
| commit | 5e65f31b5ad7b2143f3905863649e43f2c238281 (patch) | |
| tree | 8193a88b23cc245202760d4a51c08f0213dcb915 | |
| parent | 9c0582704f63f85aab112c8a9cff344fc3df62ca (diff) | |
Add Windows Server 2022 with Visual Studio 2022
https://github.blog/changelog/2021-08-23-github-actions-windows-server-2022-with-visual-studio-2022-is-now-available-on-github-hosted-runners-public-beta/
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4775
| -rw-r--r-- | .github/workflows/windows.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6adc4fcd4c..28f795b323 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -5,8 +5,13 @@ jobs: strategy: matrix: test_task: [check] # to make job names consistent - os: [windows-2019] - vs: [2019] + os: [windows-2019, windows-2022] + vs: [2019, 2022] + exclude: + - os: windows-2019 + vs: 2022 + - os: windows-2022 + vs: 2019 fail-fast: false runs-on: ${{ matrix.os }} env: |
