mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
ci(proxy): replace deprecated windows-2016
with windows-2022
* https://github.com/actions/virtual-environments/issues/4312
This commit is contained in:
parent
3eb6001e5c
commit
52ffe58df8
2 changed files with 56 additions and 56 deletions
110
.github/workflows/kitchen.windows.yml
vendored
110
.github/workflows/kitchen.windows.yml
vendored
|
@ -36,6 +36,61 @@ jobs:
|
||||||
- name: 'ShellCheck'
|
- name: 'ShellCheck'
|
||||||
run: |
|
run: |
|
||||||
shellcheck -s sh -f tty bootstrap-salt.sh
|
shellcheck -s sh -f tty bootstrap-salt.sh
|
||||||
|
test-2022:
|
||||||
|
runs-on: 'windows-2022'
|
||||||
|
timeout-minutes: 20
|
||||||
|
needs: 'lint'
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
instance:
|
||||||
|
- py3-stable-3001-windows-2022
|
||||||
|
- py3-stable-3002-windows-2022
|
||||||
|
- py3-stable-3003-windows-2022
|
||||||
|
- latest-windows-2022
|
||||||
|
steps:
|
||||||
|
- name: 'Check out code'
|
||||||
|
uses: 'actions/checkout@v2'
|
||||||
|
- name: 'Install Chef'
|
||||||
|
uses: 'actionshub/chef-install@1.1.0'
|
||||||
|
with:
|
||||||
|
project: 'chef'
|
||||||
|
version: '16.10.8'
|
||||||
|
- name: 'Add Chef bindir to PATH'
|
||||||
|
uses: 'myci-actions/export-env-var-powershell@1'
|
||||||
|
with:
|
||||||
|
name: 'PATH'
|
||||||
|
value: "C:\\opscode\\chef\\bin;\
|
||||||
|
C:\\opscode\\chef\\embedded\\bin;$env:PATH"
|
||||||
|
- name: 'Set up Bundler cache'
|
||||||
|
uses: 'actions/cache@v1'
|
||||||
|
with:
|
||||||
|
path: 'vendor/bundle'
|
||||||
|
key: "${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}"
|
||||||
|
restore-keys: "${{ runner.os }}-gems-"
|
||||||
|
- name: 'Set up test user'
|
||||||
|
run: |
|
||||||
|
$password = ConvertTo-SecureString $env:machine_pass -AsPlainText -Force
|
||||||
|
New-LocalUser $env:machine_user -Password $password
|
||||||
|
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
|
||||||
|
- name: 'Set up WinRM'
|
||||||
|
run: |
|
||||||
|
Set-WSManQuickConfig -Force
|
||||||
|
- name: 'Run Bundler'
|
||||||
|
run: |
|
||||||
|
ruby --version
|
||||||
|
bundle config path vendor/bundle
|
||||||
|
bundle install --jobs 4 --retry 3
|
||||||
|
- name: 'Set up Python 3.7'
|
||||||
|
uses: 'actions/setup-python@v1'
|
||||||
|
with:
|
||||||
|
python-version: '3.7'
|
||||||
|
- name: 'Install Python Dependencies'
|
||||||
|
run: |
|
||||||
|
pip install -U pip
|
||||||
|
pip install -r tests/requirements.txt
|
||||||
|
- name: 'Run Test Kitchen'
|
||||||
|
run: 'bundle exec kitchen test ${{ matrix.instance }}'
|
||||||
test-2019:
|
test-2019:
|
||||||
runs-on: 'windows-2019'
|
runs-on: 'windows-2019'
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
|
@ -91,58 +146,3 @@ jobs:
|
||||||
pip install -r tests/requirements.txt
|
pip install -r tests/requirements.txt
|
||||||
- name: 'Run Test Kitchen'
|
- name: 'Run Test Kitchen'
|
||||||
run: 'bundle exec kitchen test ${{ matrix.instance }}'
|
run: 'bundle exec kitchen test ${{ matrix.instance }}'
|
||||||
test-2016:
|
|
||||||
runs-on: 'windows-2016'
|
|
||||||
timeout-minutes: 20
|
|
||||||
needs: 'lint'
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
instance:
|
|
||||||
- py3-stable-3001-windows-2016
|
|
||||||
- py3-stable-3002-windows-2016
|
|
||||||
- py3-stable-3003-windows-2016
|
|
||||||
- latest-windows-2016
|
|
||||||
steps:
|
|
||||||
- name: 'Check out code'
|
|
||||||
uses: 'actions/checkout@v2'
|
|
||||||
- name: 'Install Chef'
|
|
||||||
uses: 'actionshub/chef-install@1.1.0'
|
|
||||||
with:
|
|
||||||
project: 'chef'
|
|
||||||
version: '16.10.8'
|
|
||||||
- name: 'Add Chef bindir to PATH'
|
|
||||||
uses: 'myci-actions/export-env-var-powershell@1'
|
|
||||||
with:
|
|
||||||
name: 'PATH'
|
|
||||||
value: "C:\\opscode\\chef\\bin;\
|
|
||||||
C:\\opscode\\chef\\embedded\\bin;$env:PATH"
|
|
||||||
- name: 'Set up Bundler cache'
|
|
||||||
uses: 'actions/cache@v1'
|
|
||||||
with:
|
|
||||||
path: 'vendor/bundle'
|
|
||||||
key: "${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}"
|
|
||||||
restore-keys: "${{ runner.os }}-gems-"
|
|
||||||
- name: 'Set up test user'
|
|
||||||
run: |
|
|
||||||
$password = ConvertTo-SecureString $env:machine_pass -AsPlainText -Force
|
|
||||||
New-LocalUser $env:machine_user -Password $password
|
|
||||||
Add-LocalGroupMember -Group "Administrators" -Member $env:machine_user
|
|
||||||
- name: 'Set up WinRM'
|
|
||||||
run: |
|
|
||||||
Set-WSManQuickConfig -Force
|
|
||||||
- name: 'Run Bundler'
|
|
||||||
run: |
|
|
||||||
ruby --version
|
|
||||||
bundle config path vendor/bundle
|
|
||||||
bundle install --jobs 4 --retry 3
|
|
||||||
- name: 'Set up Python 3.7'
|
|
||||||
uses: 'actions/setup-python@v1'
|
|
||||||
with:
|
|
||||||
python-version: '3.7'
|
|
||||||
- name: 'Install Python Dependencies'
|
|
||||||
run: |
|
|
||||||
pip install -U pip
|
|
||||||
pip install -r tests/requirements.txt
|
|
||||||
- name: 'Run Test Kitchen'
|
|
||||||
run: 'bundle exec kitchen test ${{ matrix.instance }}'
|
|
||||||
|
|
|
@ -13,8 +13,8 @@ provisioner:
|
||||||
init_environment: ''
|
init_environment: ''
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
|
- name: windows-2022
|
||||||
- name: windows-2019
|
- name: windows-2019
|
||||||
- name: windows-2016
|
|
||||||
|
|
||||||
suites:
|
suites:
|
||||||
- name: py3-stable-3001
|
- name: py3-stable-3001
|
||||||
|
|
Loading…
Add table
Reference in a new issue