Merge branch 'main' into fix/beats_tls_248 #176
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
--- | |
name: Test Role beats | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
push: | |
branches: | |
- 'feature/**' | |
- 'fix/**' | |
- '!doc/**' | |
paths: | |
- 'roles/beats/**' | |
- '.github/workflows/test_role_beats.yml' | |
- 'molecule/beats_**' | |
pull_request: | |
branches: | |
- 'feature/**' | |
- 'fix/**' | |
- '!doc/**' | |
paths: | |
- 'roles/beats/**' | |
- '.github/workflows/test_role_beats.yml' | |
- 'molecule/beats_**' | |
jobs: | |
lint_beats: | |
uses: ./.github/workflows/test_linting.yml | |
with: | |
rolename: beats | |
molecule_beats: | |
needs: lint_beats | |
runs-on: ubuntu-latest | |
env: | |
COLLECTION_NAMESPACE: netways | |
COLLECTION_NAME: elasticstack | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: [ubuntu2204] | |
scenario: [beats_default, beats_peculiar] | |
release: [ 7, 8 ] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r requirements-test.txt | |
- name: Install collection | |
run: | | |
mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE | |
cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME | |
- name: Test with molecule | |
run: | | |
molecule test -s ${{ matrix.scenario }} | |
env: | |
MOLECULE_DISTRO: ${{ matrix.distro }} | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
ELASTIC_RELEASE: ${{ matrix.release }} |