Skip to content

Commit 8c38f1e

Browse files
committed
(maint) Replace Windows 2019 with 2016 on GitHub Actions
Unit tests seem to be running much faster on Windows 2016 with GitHub Actions than Windows 2019.
1 parent 7fce659 commit 8c38f1e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1111
strategy:
1212
matrix:
13-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
13+
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ]
1414
puppet_version: [ 5, 6, 7 ]
1515
include:
1616
- puppet_version: 5
@@ -28,7 +28,7 @@ jobs:
2828
os_type: 'macOS'
2929
env_set_cmd: 'export '
3030
gem_file: 'puppet-latest-universal-darwin.gem'
31-
- os: 'windows-2019'
31+
- os: 'windows-2016'
3232
os_type: 'Windows'
3333
env_set_cmd: '$env:'
3434
gem_file: 'puppet-latest-x64-mingw32.gem'

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
15+
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ]
1616
puppet_version: [ 5, 6, 7 ]
1717
include:
1818
- puppet_version: 5
@@ -30,7 +30,7 @@ jobs:
3030
os_type: 'macOS'
3131
env_set_cmd: 'export '
3232
gem_file: 'puppet-latest-universal-darwin.gem'
33-
- os: 'windows-2019'
33+
- os: 'windows-2016'
3434
os_type: 'Windows'
3535
env_set_cmd: '$env:'
3636
gem_file: 'puppet-latest-x64-mingw32.gem'

.github/workflows/unit_tests_with_released_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
15+
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ]
1616
puppet_version: [ 5, 6 ]
1717
include:
1818
- puppet_version: 5
@@ -24,7 +24,7 @@ jobs:
2424
os_type: 'Linux'
2525
- os: 'macos-10.15'
2626
os_type: 'macOS'
27-
- os: 'windows-2019'
27+
- os: 'windows-2016'
2828
os_type: 'Windows'
2929

3030
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)