-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1568 from s0undt3ch/stable
Stable Release
- Loading branch information
Showing
13 changed files
with
1,289 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
--- | ||
name: 'Kitchen Vagrant (FreeBSD & OpenBSD)' | ||
'on': ['push', 'pull_request'] | ||
|
||
env: | ||
KITCHEN_LOCAL_YAML: 'kitchen.vagrant.yml' | ||
|
||
jobs: | ||
generate-actions-workflow: | ||
name: 'Generate The Actions Workflow' | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: 'actions/checkout@v1' | ||
- name: 'Set up Python 3.7' | ||
uses: 'actions/setup-python@v1' | ||
with: | ||
python-version: 3.7 | ||
- name: 'Install Pre-Commit' | ||
run: | | ||
pip install -U pip | ||
pip install pre-commit | ||
pre-commit install | ||
- name: 'Generate Workflow Actions' | ||
run: | | ||
pre-commit run -av generate-actions-workflow | ||
lint: | ||
name: 'Lint' | ||
runs-on: 'ubuntu-latest' | ||
needs: 'generate-actions-workflow' | ||
container: 'koalaman/shellcheck-alpine:v0.6.0' | ||
steps: | ||
- uses: 'actions/checkout@v1' | ||
- name: 'ShellCheck' | ||
run: | | ||
shellcheck -s sh -f tty bootstrap-salt.sh | ||
test: | ||
runs-on: 'macos-10.15' | ||
timeout-minutes: 20 | ||
needs: 'lint' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
instance: | ||
- py3-git-3000-freebsd-130 | ||
- py3-git-3000-freebsd-122 | ||
- py3-git-3000-freebsd-114 | ||
# - py3-git-3000-openbsd-6 | ||
- py3-git-3001-freebsd-130 | ||
- py3-git-3001-freebsd-122 | ||
- py3-git-3001-freebsd-114 | ||
# - py3-git-3001-openbsd-6 | ||
- py3-git-3002-freebsd-130 | ||
- py3-git-3002-freebsd-122 | ||
- py3-git-3002-freebsd-114 | ||
# - py3-git-3002-openbsd-6 | ||
- py3-git-master-freebsd-130 | ||
- py3-git-master-freebsd-122 | ||
- py3-git-master-freebsd-114 | ||
# - py3-git-master-openbsd-6 | ||
- latest-freebsd-130 | ||
- latest-freebsd-122 | ||
- latest-freebsd-114 | ||
- latest-openbsd-6 | ||
steps: | ||
- name: 'Check out code' | ||
uses: 'actions/checkout@v2' | ||
- 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: '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 }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
--- | ||
name: 'Kitchen (Windows)' | ||
'on': ['push', 'pull_request'] | ||
|
||
env: | ||
machine_user: kitchen | ||
machine_pass: Password1 | ||
machine_port: 5985 | ||
KITCHEN_LOCAL_YAML: 'kitchen.windows.yml' | ||
|
||
jobs: | ||
generate-actions-workflow: | ||
name: 'Generate The Actions Workflow' | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: 'actions/checkout@v1' | ||
- name: 'Set up Python 3.7' | ||
uses: 'actions/setup-python@v1' | ||
with: | ||
python-version: 3.7 | ||
- name: 'Install Pre-Commit' | ||
run: | | ||
pip install -U pip | ||
pip install pre-commit | ||
pre-commit install | ||
- name: 'Generate Workflow Actions' | ||
run: | | ||
pre-commit run -av generate-actions-workflow | ||
lint: | ||
name: 'Lint' | ||
runs-on: 'ubuntu-latest' | ||
needs: 'generate-actions-workflow' | ||
container: 'koalaman/shellcheck-alpine:v0.6.0' | ||
steps: | ||
- uses: 'actions/checkout@v1' | ||
- name: 'ShellCheck' | ||
run: | | ||
shellcheck -s sh -f tty bootstrap-salt.sh | ||
test-2019: | ||
runs-on: 'windows-2019' | ||
timeout-minutes: 20 | ||
needs: 'lint' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
instance: | ||
- py3-stable-3001-windows-2019 | ||
- py3-stable-3002-windows-2019 | ||
- latest-windows-2019 | ||
steps: | ||
- name: 'Check out code' | ||
uses: 'actions/checkout@v2' | ||
- name: 'Install Chef' | ||
uses: 'actionshub/[email protected]' | ||
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; | ||
Set-WSManInstance -ResourceURI winrm/config/service | ||
-ValueSet @{AllowUnencrypted="true"} | ||
- 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-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 | ||
- latest-windows-2016 | ||
steps: | ||
- name: 'Check out code' | ||
uses: 'actions/checkout@v2' | ||
- name: 'Install Chef' | ||
uses: 'actionshub/[email protected]' | ||
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; | ||
Set-WSManInstance -ResourceURI winrm/config/service | ||
-ValueSet @{AllowUnencrypted="true"} | ||
- 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 }}' |
Oops, something went wrong.