forked from ansible-collections/community.clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
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 ansible-collections#1 from Andersson007/clickhouse…
…_client clickhouse_client: add the module, add tests, update repo files
- Loading branch information
Showing
17 changed files
with
692 additions
and
411 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,127 @@ | ||
name: Plugins CI | ||
on: | ||
push: | ||
paths: | ||
- 'plugins/**' | ||
- 'tests/**' | ||
- '.github/workflows/ansible-test-plugins.yml' | ||
pull_request: | ||
paths: | ||
- 'plugins/**' | ||
- 'tests/**' | ||
- '.github/workflows/ansible-test-plugins.yml' | ||
schedule: | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
sanity: | ||
name: "Sanity (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }})" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
ansible: | ||
- stable-2.14 | ||
#- stable-2.15 | ||
#- stable-2.16 | ||
#- devel | ||
steps: | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ansible_collections/community/clickhouse | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install ansible-base (${{ matrix.ansible }}) | ||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | ||
|
||
- name: Run sanity tests | ||
run: ansible-test sanity --docker -v --color | ||
working-directory: ./ansible_collections/community/clickhouse | ||
|
||
units: | ||
runs-on: ubuntu-latest | ||
name: Units (Ⓐ${{ matrix.ansible }}) | ||
strategy: | ||
# As soon as the first unit test fails, | ||
# cancel the others to free up the CI queue | ||
fail-fast: true | ||
matrix: | ||
ansible: | ||
- stable-2.14 | ||
#- stable-2.15 | ||
#- stable-2.16 | ||
#- devel | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ./ansible_collections/community/clickhouse | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install ansible-base (${{ matrix.ansible }}) | ||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | ||
|
||
# Run the unit tests | ||
- name: Run unit test | ||
run: ansible-test units -v --color --docker --coverage | ||
working-directory: ./ansible_collections/community/clickhouse | ||
|
||
# ansible-test support producing code coverage date | ||
- name: Generate coverage report | ||
run: ansible-test coverage xml -v --requirements --group-by command --group-by version | ||
working-directory: ./ansible_collections/community/clickhouse | ||
|
||
# See the reports at https://codecov.io/gh/GITHUBORG/REPONAME | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: false | ||
|
||
integration: | ||
name: "Integration (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }}" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ansible: | ||
- stable-2.14 | ||
#- stable-2.15 | ||
#- stable-2.16 | ||
#- devel | ||
python: | ||
- "3.10" | ||
steps: | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ansible_collections/community/clickhouse | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install ansible-base (${{ matrix.ansible }}) | ||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | ||
|
||
- name: Run integration tests | ||
run: ansible-test integration --docker ubuntu2204 -v --color --retry-on-error --continue-on-error --python ${{ matrix.python }} --diff --coverage | ||
working-directory: ./ansible_collections/community/clickhouse | ||
|
||
- name: Generate coverage report. | ||
run: ansible-test coverage xml -v --requirements --group-by command --group-by version | ||
working-directory: ./ansible_collections/community/clickhouse | ||
|
||
- uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: false |
Oops, something went wrong.