mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 02:10:29 -07:00
ci: update workflows
This commit is contained in:
parent
345c50fb85
commit
52d9286ea3
4 changed files with 92 additions and 26 deletions
110
.github/workflows/ci.yml
vendored
110
.github/workflows/ci.yml
vendored
|
@ -14,18 +14,103 @@ env:
|
|||
PYTEST_ADDOPTS: '--color=yes'
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
linter:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python_version: ["3.11"]
|
||||
ansible_version: ["2.15"]
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: ansible_collections/middleware_automation/keycloak
|
||||
|
||||
- name: Set up Python ${{ matrix.python_version }}
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python_version }}
|
||||
cache: 'pip'
|
||||
|
||||
- name: Create default collection path
|
||||
run: |
|
||||
mkdir -p /home/runner/.ansible/
|
||||
ln -s ${{ github.workspace }} /home/runner/.ansible/collections
|
||||
|
||||
- name: Install yamllint, ansible and dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install yamllint ansible-core==${{ matrix.ansible_version }} ansible-lint
|
||||
if [ -f ansible_collections/middleware_automation/keycloak/requirements.txt ]; then
|
||||
pip install -r ansible_collections/middleware_automation/keycloak/requirements.txt
|
||||
fi
|
||||
if [ -f ansible_collections/middleware_automation/keycloak/requirements.yml ]; then
|
||||
ansible-galaxy collection install -r ansible_collections/middleware_automation/keycloak/requirements.yml -p /home/runner/.ansible/collections --force-with-deps
|
||||
fi
|
||||
|
||||
- name: Install ansible-lint custom rules
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ansible-middleware/ansible-lint-custom-rules
|
||||
path: ansible-lint-custom-rules/
|
||||
|
||||
- name: Run linter
|
||||
run: |
|
||||
ansible-lint --version
|
||||
ansible-lint -v
|
||||
working-directory: ./ansible_collections/middleware_automation/keycloak
|
||||
|
||||
sanity:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python_version: ["3.8", "3.9", "3.11"]
|
||||
ansible_version: ["2.11", "2.15"]
|
||||
exclude:
|
||||
- python_version: "3.8"
|
||||
ansible_version: "2.15"
|
||||
- python_version: "3.9"
|
||||
ansible_version: "2.15"
|
||||
- python_version: "3.11"
|
||||
ansible_version: "2.11"
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: ansible_collections/middleware_automation/keycloak
|
||||
|
||||
- name: Set up Python ${{ matrix.python_version }}
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python_version }}
|
||||
cache: 'pip'
|
||||
|
||||
- name: Create default collection path
|
||||
run: |
|
||||
mkdir -p /home/runner/.ansible/
|
||||
ln -s ${{ github.workspace }} /home/runner/.ansible/collections
|
||||
|
||||
- name: Install ansible-core stable-${{ matrix.ansible_version }}
|
||||
run: |
|
||||
pip install https://github.com/ansible/ansible/archive/stable-${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
||||
|
||||
- name: Run sanity tests
|
||||
run: ansible-test sanity -v --color --docker --python ${{ matrix.python_version }} --exclude docs/conf.py --exclude changelogs/fragments/.gitignore --skip-test symlinks
|
||||
working-directory: ./ansible_collections/middleware_automation/keycloak
|
||||
|
||||
molecule:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python_version: ["3.11"]
|
||||
ansible_version: ["2.14", "2.15"]
|
||||
molecule_test:
|
||||
- default
|
||||
- quarkus
|
||||
- overridexml
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: ansible_collections/middleware_automation/keycloak
|
||||
|
||||
|
@ -49,27 +134,6 @@ jobs:
|
|||
ansible-galaxy collection install -r ansible_collections/middleware_automation/keycloak/molecule/requirements.yml -p /home/runner/.ansible/collections
|
||||
fi
|
||||
|
||||
- name: Create default collection path
|
||||
run: |
|
||||
mkdir -p /home/runner/.ansible/
|
||||
ln -s /home/runner/work/keycloak/keycloak /home/runner/.ansible/collections
|
||||
|
||||
- name: Install ansible-lint custom rules
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: ansible-middleware/ansible-lint-custom-rules
|
||||
path: ansible_collections/ansible-lint-custom-rules/
|
||||
|
||||
- name: Run linter
|
||||
run: |
|
||||
ansible-lint --version
|
||||
ansible-lint -v
|
||||
working-directory: ./ansible_collections/middleware_automation/keycloak
|
||||
|
||||
- name: Run sanity tests
|
||||
run: ansible-test sanity -v --color --python ${{ matrix.python_version }} --exclude changelogs/fragments/.gitignore --skip-test symlinks
|
||||
working-directory: ./ansible_collections/middleware_automation/keycloak
|
||||
|
||||
- name: Run molecule test
|
||||
run: molecule test -s ${{ matrix.molecule_test }}
|
||||
working-directory: ./ansible_collections/middleware_automation/keycloak
|
||||
|
|
4
.github/workflows/docs.yml
vendored
4
.github/workflows/docs.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
pages: write
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: ansible_collections/middleware_automation/keycloak
|
||||
fetch-depth: 0
|
||||
|
@ -34,7 +34,7 @@ jobs:
|
|||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
python-version: 3.11
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install doc dependencies
|
||||
|
|
|
@ -43,6 +43,7 @@ extensions = [
|
|||
'myst_parser',
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx_antsibull_ext',
|
||||
'ansible_basic_sphinx_ext',
|
||||
]
|
||||
|
||||
|
@ -71,7 +72,7 @@ language = None
|
|||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.tmp']
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'sphinx'
|
||||
pygments_style = 'ansible'
|
||||
|
||||
highlight_language = 'YAML+Jinja'
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ antsibull>=0.17.0
|
|||
antsibull-docs
|
||||
antsibull-changelog
|
||||
ansible-core>=2.14.1
|
||||
ansible-pygments
|
||||
sphinx-rtd-theme
|
||||
git+https://github.com/felixfontein/ansible-basic-sphinx-ext
|
||||
myst-parser
|
||||
|
|
Loading…
Add table
Reference in a new issue