-
Notifications
You must be signed in to change notification settings - Fork 56
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 #293 from sap-linuxlab/dev
version 1.2.0
- Loading branch information
Showing
540 changed files
with
14,210 additions
and
4,918 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 |
---|---|---|
@@ -1,5 +1,31 @@ | ||
--- | ||
# Collection wide lint-file | ||
# DO NOT CHANGE | ||
exclude_paths: | ||
- .cache/ | ||
- .github/ | ||
#- docs/ | ||
- changelogs/ | ||
- playbooks/ | ||
- roles/sap_anydb_install_oracle | ||
#- roles/sap_general_preconfigure | ||
#- roles/sap_ha_install_hana_hsr | ||
#- roles/sap_ha_pacemaker_cluster | ||
#- roles/sap_hana_install | ||
#- roles/sap_hana_preconfigure | ||
- roles/sap_hostagent | ||
- roles/sap_hypervisor_node_preconfigure | ||
- roles/sap_install_media_detect | ||
#- roles/sap_netweaver_preconfigure | ||
- roles/sap_storage_setup | ||
#- roles/sap_swpm | ||
- roles/sap_storage | ||
- roles/sap_vm_preconfigure | ||
|
||
enable_list: | ||
- yaml | ||
skip_list: | ||
- experimental | ||
- ignore-errors # We use ignore_errors for all the assert tasks, which should be acceptable | ||
- schema # We want to allow single digit version numbers in a role's meta/main.yml file. This is allowed as per https://galaxy.ansible.com/docs/contributing/creating_role.html and https://galaxy.ansible.com/api/v1/platforms/?page=6. | ||
- name[template] # Allow templating inside name. During dev and qa, it should be possible to identify cases where it doesn't work |
27 changes: 0 additions & 27 deletions
27
.github/workflows/ansible-lint sap_general_preconfigure.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
.github/workflows/ansible-lint sap_netweaver_preconfigure.yml
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
.github/workflows/ansible-lint-sap_general_preconfigure.yml
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_general_preconfigure | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_general_preconfigure/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_general_preconfigure/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_general_preconfigure | ||
run: ansible-lint |
39 changes: 39 additions & 0 deletions
39
.github/workflows/ansible-lint-sap_ha_install_hana_hsr.yml
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_ha_install_hana_hsr | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_ha_install_hana_hsr/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_ha_install_hana_hsr/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_ha_install_hana_hsr | ||
run: ansible-lint |
39 changes: 39 additions & 0 deletions
39
.github/workflows/ansible-lint-sap_ha_pacemaker_cluster.yml
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_ha_pacemaker_cluster | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_ha_pacemaker_cluster/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_ha_pacemaker_cluster/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_ha_pacemaker_cluster | ||
run: ansible-lint |
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_hana_install | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hana_install/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hana_install/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_hana_install | ||
run: ansible-lint |
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_hana_preconfigure | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hana_preconfigure/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hana_preconfigure/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_hana_preconfigure | ||
run: ansible-lint |
39 changes: 39 additions & 0 deletions
39
.github/workflows/ansible-lint-sap_hypervisor_node_preconfigure.yml
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,39 @@ | ||
--- | ||
|
||
# Workflow for ansible-lint of a role | ||
|
||
name: ansible-lint of the role sap_hypervisor_node_preconfigure | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hypervisor_node_preconfigure/**' | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'roles/sap_hypervisor_node_preconfigure/**' | ||
|
||
jobs: | ||
ansible-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python 3 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install test dependencies | ||
run: pip3 install ansible ansible-lint==6.8.6 | ||
|
||
- name: Run ansible-lint | ||
working-directory: /home/runner/work/community.sap_install/community.sap_install/roles/sap_hypervisor_node_preconfigure | ||
run: ansible-lint |
Oops, something went wrong.