Skip to content

Commit

Permalink
Merge pull request ansible-collections#1 from Andersson007/clickhouse…
Browse files Browse the repository at this point in the history
…_client

clickhouse_client: add the module, add tests, update repo files
  • Loading branch information
Andersson007 authored Jan 12, 2024
2 parents 957a5c5 + f0a5325 commit 02cfe94
Show file tree
Hide file tree
Showing 17 changed files with 692 additions and 411 deletions.
127 changes: 127 additions & 0 deletions .github/workflows/ansible-test-plugins.yml
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
Loading

0 comments on commit 02cfe94

Please sign in to comment.