@@ -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