summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-27 19:09:47 +0900
committerAaron Patterson <tenderlove@github.com>2019-11-27 12:32:42 -0800
commit416cccc6ec4fde7220edbf848424514f5d5b5743 (patch)
tree35701d3f84692043b24b4a8dd5a3cbb2b170468b /.github
parentcdcaf041127430b30ee4b32452762666495a732a (diff)
Drop windows-2016 on GitHub Actions
https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners#windows-server-2016 > Note: The Windows Server 2016 virtual environment will be removed on December 3, 2019.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2704
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index f598da18d1..20d2c1bd1d 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -11,13 +11,8 @@ jobs:
strategy:
matrix:
test_task: [test]
- os: [windows-2016, windows-2019]
- vs: [2017, 2019]
- exclude:
- - os: windows-2016
- vs: 2019
- - os: windows-2019
- vs: 2017
+ os: [windows-2019]
+ vs: [2019]
fail-fast: false
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"