-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
78 additions
and
6 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,46 @@ | ||
name: NetApp.ontap Ansible CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
sanity: | ||
name: Sanity (${{ matrix.ansible }} on ONTAP | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
ansible: | ||
- stable-2.9 | ||
- stable-2.10 | ||
- stable-2.11 | ||
- devel | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install ansible (${{ matrix.ansible }}) | ||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | ||
|
||
- name: Make directory to make ansible-test happy | ||
run: | | ||
pwd | ||
mkdir -p ansible_collections/netapp/ontap/ | ||
rsync -av . ansible_collections/netapp/ontap/ --exclude ansible_collections/netapp/ontap/ | ||
- name: Run sanity tests ONTAP | ||
run: ansible-test sanity --docker -v --color | ||
working-directory: ansible_collections/netapp/ontap/ | ||
|
||
- name: Run Unit Tests | ||
run: ansible-test unit --docker -v --color | ||
working-directory: ansible_collections/netapp/ontap/ |
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
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
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
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,2 @@ | ||
bugfixes: | ||
- na_ontap_autosupport - KeyError - No element by given name validate-digital-certificate. |
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,12 +1,12 @@ | ||
namespace: "netapp" | ||
name: "ontap" | ||
version: "21.6.0" | ||
version: "21.6.1" | ||
authors: | ||
- "NetApp Ansible Team <[email protected]>" | ||
license: "GPL-2.0-or-later" | ||
readme: README.md | ||
description: NetApp ONTAP Collection | ||
repository: https://github.com/ansible-collections/netapp | ||
repository: https://github.com/ansible-collections/netapp.ontap | ||
homepage: https://netapp.io/configuration-management-and-automation/ | ||
tags: | ||
- storage | ||
|
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
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