Skip to content

Commit 6fac8b7

Browse files
committed
Update to new release
2 parents a6229b7 + 97a1e11 commit 6fac8b7

File tree

12 files changed

+2550
-620
lines changed

12 files changed

+2550
-620
lines changed

.github/workflows/kitchen.vagrant.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,23 @@ jobs:
4141
fail-fast: false
4242
matrix:
4343
instance:
44-
- py3-git-3000-freebsd-130
45-
- py3-git-3000-freebsd-122
46-
- py3-git-3000-freebsd-114
44+
# - py3-git-3000-freebsd-130
45+
# - py3-git-3000-freebsd-122
4746
# - py3-git-3000-openbsd-6
4847
- py3-git-3001-freebsd-130
4948
- py3-git-3001-freebsd-122
50-
- py3-git-3001-freebsd-114
5149
# - py3-git-3001-openbsd-6
5250
- py3-git-3002-freebsd-130
5351
- py3-git-3002-freebsd-122
54-
- py3-git-3002-freebsd-114
5552
# - py3-git-3002-openbsd-6
53+
- py3-git-3003-freebsd-130
54+
- py3-git-3003-freebsd-122
55+
# - py3-git-3003-openbsd-6
5656
- py3-git-master-freebsd-130
5757
- py3-git-master-freebsd-122
58-
- py3-git-master-freebsd-114
5958
# - py3-git-master-openbsd-6
6059
- latest-freebsd-130
6160
- latest-freebsd-122
62-
- latest-freebsd-114
6361
- latest-openbsd-6
6462
steps:
6563
- name: 'Check out code'

.github/workflows/kitchen.windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
instance:
4747
- py3-stable-3001-windows-2019
4848
- py3-stable-3002-windows-2019
49+
- py3-stable-3003-windows-2019
4950
- latest-windows-2019
5051
steps:
5152
- name: 'Check out code'
@@ -102,6 +103,7 @@ jobs:
102103
instance:
103104
- py3-stable-3001-windows-2016
104105
- py3-stable-3002-windows-2016
106+
- py3-stable-3003-windows-2016
105107
- latest-windows-2016
106108
steps:
107109
- name: 'Check out code'

.github/workflows/main-branch-only.yml

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,98 @@ jobs:
284284
bundle exec kitchen destroy py3-git-3002-gentoo
285285
286286
287+
py3-stable-3003-gentoo:
288+
name: Gentoo v3003 Py3 Stable
289+
runs-on: ubuntu-latest
290+
timeout-minutes: 90
291+
292+
293+
294+
steps:
295+
- uses: actions/checkout@v1
296+
- name: Setup Ruby
297+
uses: actions/setup-ruby@v1
298+
with:
299+
ruby-version: 2.6.x
300+
301+
- name: Install Bundler
302+
run: |
303+
gem install bundler
304+
305+
- name: Setup Bundle
306+
run: |
307+
bundle install --with docker --without opennebula ec2 windows vagrant
308+
309+
- name: Set up Python 3.7
310+
uses: actions/setup-python@v1
311+
with:
312+
python-version: 3.7
313+
314+
- name: Install Python Dependencies
315+
run: |
316+
pip install -U pip
317+
pip install -r tests/requirements.txt
318+
319+
- name: Create Test Container
320+
run: |
321+
bundle exec kitchen create py3-stable-3003-gentoo || bundle exec kitchen create py3-stable-3003-gentoo
322+
323+
- name: Test Bootstrap In Test Container
324+
run: |
325+
bundle exec kitchen verify py3-stable-3003-gentoo
326+
327+
- name: Destroy Test Container
328+
if: always()
329+
run: |
330+
bundle exec kitchen destroy py3-stable-3003-gentoo
331+
332+
333+
py3-git-3003-gentoo:
334+
name: Gentoo v3003 Py3 Git
335+
runs-on: ubuntu-latest
336+
timeout-minutes: 90
337+
338+
339+
340+
steps:
341+
- uses: actions/checkout@v1
342+
- name: Setup Ruby
343+
uses: actions/setup-ruby@v1
344+
with:
345+
ruby-version: 2.6.x
346+
347+
- name: Install Bundler
348+
run: |
349+
gem install bundler
350+
351+
- name: Setup Bundle
352+
run: |
353+
bundle install --with docker --without opennebula ec2 windows vagrant
354+
355+
- name: Set up Python 3.7
356+
uses: actions/setup-python@v1
357+
with:
358+
python-version: 3.7
359+
360+
- name: Install Python Dependencies
361+
run: |
362+
pip install -U pip
363+
pip install -r tests/requirements.txt
364+
365+
- name: Create Test Container
366+
run: |
367+
bundle exec kitchen create py3-git-3003-gentoo || bundle exec kitchen create py3-git-3003-gentoo
368+
369+
- name: Test Bootstrap In Test Container
370+
run: |
371+
bundle exec kitchen verify py3-git-3003-gentoo
372+
373+
- name: Destroy Test Container
374+
if: always()
375+
run: |
376+
bundle exec kitchen destroy py3-git-3003-gentoo
377+
378+
287379
py3-git-master-gentoo:
288380
name: Gentoo Master Py3 Git
289381
runs-on: ubuntu-latest
@@ -652,6 +744,98 @@ jobs:
652744
bundle exec kitchen destroy py3-git-3002-gentoo-systemd
653745
654746
747+
py3-stable-3003-gentoo-systemd:
748+
name: Gentoo (systemd) v3003 Py3 Stable
749+
runs-on: ubuntu-latest
750+
timeout-minutes: 90
751+
752+
753+
754+
steps:
755+
- uses: actions/checkout@v1
756+
- name: Setup Ruby
757+
uses: actions/setup-ruby@v1
758+
with:
759+
ruby-version: 2.6.x
760+
761+
- name: Install Bundler
762+
run: |
763+
gem install bundler
764+
765+
- name: Setup Bundle
766+
run: |
767+
bundle install --with docker --without opennebula ec2 windows vagrant
768+
769+
- name: Set up Python 3.7
770+
uses: actions/setup-python@v1
771+
with:
772+
python-version: 3.7
773+
774+
- name: Install Python Dependencies
775+
run: |
776+
pip install -U pip
777+
pip install -r tests/requirements.txt
778+
779+
- name: Create Test Container
780+
run: |
781+
bundle exec kitchen create py3-stable-3003-gentoo-systemd || bundle exec kitchen create py3-stable-3003-gentoo-systemd
782+
783+
- name: Test Bootstrap In Test Container
784+
run: |
785+
bundle exec kitchen verify py3-stable-3003-gentoo-systemd
786+
787+
- name: Destroy Test Container
788+
if: always()
789+
run: |
790+
bundle exec kitchen destroy py3-stable-3003-gentoo-systemd
791+
792+
793+
py3-git-3003-gentoo-systemd:
794+
name: Gentoo (systemd) v3003 Py3 Git
795+
runs-on: ubuntu-latest
796+
timeout-minutes: 90
797+
798+
799+
800+
steps:
801+
- uses: actions/checkout@v1
802+
- name: Setup Ruby
803+
uses: actions/setup-ruby@v1
804+
with:
805+
ruby-version: 2.6.x
806+
807+
- name: Install Bundler
808+
run: |
809+
gem install bundler
810+
811+
- name: Setup Bundle
812+
run: |
813+
bundle install --with docker --without opennebula ec2 windows vagrant
814+
815+
- name: Set up Python 3.7
816+
uses: actions/setup-python@v1
817+
with:
818+
python-version: 3.7
819+
820+
- name: Install Python Dependencies
821+
run: |
822+
pip install -U pip
823+
pip install -r tests/requirements.txt
824+
825+
- name: Create Test Container
826+
run: |
827+
bundle exec kitchen create py3-git-3003-gentoo-systemd || bundle exec kitchen create py3-git-3003-gentoo-systemd
828+
829+
- name: Test Bootstrap In Test Container
830+
run: |
831+
bundle exec kitchen verify py3-git-3003-gentoo-systemd
832+
833+
- name: Destroy Test Container
834+
if: always()
835+
run: |
836+
bundle exec kitchen destroy py3-git-3003-gentoo-systemd
837+
838+
655839
py3-git-master-gentoo-systemd:
656840
name: Gentoo (systemd) Master Py3 Git
657841
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)