|
| 1 | +--- |
| 2 | +name: Test Plugins |
| 3 | +on: |
| 4 | + workflow_dispatch: |
| 5 | + inputs: |
| 6 | + logLevel: |
| 7 | + description: 'Log level' |
| 8 | + required: true |
| 9 | + default: 'warning' |
| 10 | + type: choice |
| 11 | + options: |
| 12 | + - info |
| 13 | + - warning |
| 14 | + - debug |
| 15 | + push: |
| 16 | + branches: |
| 17 | + - 'feature/**' |
| 18 | + - 'fix/**' |
| 19 | + - '!doc/**' |
| 20 | + paths: |
| 21 | + - 'plugins/**' |
| 22 | + - '.github/workflows/test_plugins.yml' |
| 23 | + - 'molecule/plugins/**' |
| 24 | + - '.config/pep8.yml' |
| 25 | + - 'tests/**' |
| 26 | + pull_request: |
| 27 | + branches: |
| 28 | + - 'feature/**' |
| 29 | + - 'fix/**' |
| 30 | + - '!doc/**' |
| 31 | + paths: |
| 32 | + - 'plugins/**' |
| 33 | + - '.github/workflows/test_plugins.yml' |
| 34 | + - 'molecule/plugins/**' |
| 35 | + - '.config/pep8.yml' |
| 36 | + - 'tests/**' |
| 37 | + |
| 38 | +jobs: |
| 39 | + pep8: |
| 40 | + runs-on: ubuntu-latest |
| 41 | + steps: |
| 42 | + - name: Check out the codebase. |
| 43 | + uses: actions/checkout@v3 |
| 44 | + |
| 45 | + - name: Set up Python 3. |
| 46 | + uses: actions/setup-python@v4 |
| 47 | + with: |
| 48 | + python-version: '3.x' |
| 49 | + |
| 50 | + - name: Install test dependencies. |
| 51 | + run: | |
| 52 | + python3 -m pip install --upgrade pip |
| 53 | + python3 -m pip install pep8 |
| 54 | +
|
| 55 | + - name: Lint code. |
| 56 | + run: | |
| 57 | + pep8 plugins/ --config=.config/pep8.cfg --statistics --count |
| 58 | +
|
| 59 | + unit-test: |
| 60 | + needs: pep8 |
| 61 | + runs-on: ubuntu-20.04 |
| 62 | + |
| 63 | + env: |
| 64 | + COLLECTION_NAMESPACE: netways |
| 65 | + COLLECTION_NAME: elasticstack |
| 66 | + |
| 67 | + strategy: |
| 68 | + fail-fast: false |
| 69 | + max-parallel: 1 |
| 70 | + |
| 71 | + steps: |
| 72 | + - name: Check out code |
| 73 | + uses: actions/checkout@v3 |
| 74 | + |
| 75 | + - name: Set up Python 3.9.14 |
| 76 | + uses: actions/setup-python@v3 |
| 77 | + with: |
| 78 | + python-version: 3.9.14 |
| 79 | + |
| 80 | + - name: Install dependencies |
| 81 | + run: | |
| 82 | + python -m pip install --upgrade pip |
| 83 | + python -m pip install install ansible |
| 84 | +
|
| 85 | + - name: Install collection |
| 86 | + run: | |
| 87 | + mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE |
| 88 | + cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME |
| 89 | +
|
| 90 | + - name: Test `cert_info` module |
| 91 | + run: | |
| 92 | + python tests/unit/plugins/modules/test_cert_info.py |
| 93 | + env: |
| 94 | + PY_COLORS: '1' |
| 95 | + ANSIBLE_FORCE_COLOR: '1' |
| 96 | + |
| 97 | + - name: Test `certs` module util |
| 98 | + run: | |
| 99 | + python tests/unit/plugins/module_utils/test_certs.py |
| 100 | + env: |
| 101 | + PY_COLORS: '1' |
| 102 | + ANSIBLE_FORCE_COLOR: '1' |
| 103 | + |
| 104 | + python: |
| 105 | + needs: unit-test |
| 106 | + runs-on: ubuntu-20.04 |
| 107 | + |
| 108 | + env: |
| 109 | + COLLECTION_NAMESPACE: netways |
| 110 | + COLLECTION_NAME: elasticstack |
| 111 | + |
| 112 | + strategy: |
| 113 | + fail-fast: false |
| 114 | + max-parallel: 1 |
| 115 | + matrix: |
| 116 | + python_version: [ 2.7.18, 3.5.10, 3.6.15, 3.7.13, 3.8.16, 3.10.10 ] |
| 117 | + |
| 118 | + steps: |
| 119 | + - name: Check out code |
| 120 | + uses: actions/checkout@v3 |
| 121 | + |
| 122 | + - name: Set up Python ${{ matrix.python_version }} |
| 123 | + uses: actions/setup-python@v3 |
| 124 | + with: |
| 125 | + python-version: ${{ matrix.python_version }} |
| 126 | + |
| 127 | + - name: Install dependencies |
| 128 | + run: | |
| 129 | + python -m pip install --upgrade pip |
| 130 | + python -m pip install install ansible |
| 131 | +
|
| 132 | + - name: Install collection |
| 133 | + run: | |
| 134 | + mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE |
| 135 | + cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME |
| 136 | +
|
| 137 | + - name: Test with ansible-playbook |
| 138 | + run: | |
| 139 | + ansible-playbook molecule/plugins/converge.yml |
| 140 | + env: |
| 141 | + PY_COLORS: '1' |
| 142 | + ANSIBLE_FORCE_COLOR: '1' |
| 143 | + |
| 144 | + ansible-core: |
| 145 | + needs: python |
| 146 | + runs-on: ubuntu-20.04 |
| 147 | + |
| 148 | + env: |
| 149 | + COLLECTION_NAMESPACE: netways |
| 150 | + COLLECTION_NAME: elasticstack |
| 151 | + |
| 152 | + strategy: |
| 153 | + fail-fast: false |
| 154 | + max-parallel: 1 |
| 155 | + matrix: |
| 156 | + ansible_core_version: [ 2.11.12, 2.12.10, 2.13.8, 2.14.4 ] |
| 157 | + |
| 158 | + steps: |
| 159 | + - name: Check out code |
| 160 | + uses: actions/checkout@v3 |
| 161 | + |
| 162 | + - name: Set up Python 3.9.14 |
| 163 | + uses: actions/setup-python@v3 |
| 164 | + with: |
| 165 | + python-version: 3.9.14 |
| 166 | + |
| 167 | + - name: Install dependencies |
| 168 | + run: | |
| 169 | + python -m pip install --upgrade pip |
| 170 | + python -m pip install install ansible-core==${{ matrix.ansible_core_version }} |
| 171 | +
|
| 172 | + - name: Install collection |
| 173 | + run: | |
| 174 | + mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE |
| 175 | + cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME |
| 176 | +
|
| 177 | + - name: Test with ansible-playbook |
| 178 | + run: | |
| 179 | + ansible-playbook molecule/plugins/converge.yml |
| 180 | + env: |
| 181 | + PY_COLORS: '1' |
| 182 | + ANSIBLE_FORCE_COLOR: '1' |
| 183 | + |
| 184 | + python-cryptography: |
| 185 | + needs: ansible-core |
| 186 | + runs-on: ubuntu-20.04 |
| 187 | + |
| 188 | + env: |
| 189 | + COLLECTION_NAMESPACE: netways |
| 190 | + COLLECTION_NAME: elasticstack |
| 191 | + |
| 192 | + strategy: |
| 193 | + fail-fast: false |
| 194 | + max-parallel: 1 |
| 195 | + matrix: |
| 196 | + python_cryptography_version: [ 2.5, 3.0, 3.1, 3.2, 3.3, 3.4, 35.0.0, 36.0.0, 38.0.0, 40.0.1] |
| 197 | + |
| 198 | + steps: |
| 199 | + - name: Check out code |
| 200 | + uses: actions/checkout@v3 |
| 201 | + |
| 202 | + - name: Set up Python 3.9.14 |
| 203 | + uses: actions/setup-python@v3 |
| 204 | + with: |
| 205 | + python-version: 3.9.14 |
| 206 | + |
| 207 | + - name: Install dependencies |
| 208 | + run: | |
| 209 | + python -m pip install --upgrade pip |
| 210 | + python -m pip install install cryptography==${{ matrix.python_cryptography_version }} |
| 211 | + python -m pip install install ansible |
| 212 | +
|
| 213 | + - name: Install collection |
| 214 | + run: | |
| 215 | + mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE |
| 216 | + cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME |
| 217 | +
|
| 218 | + - name: Test with ansible-playbook |
| 219 | + run: | |
| 220 | + ansible-playbook molecule/plugins/converge.yml |
| 221 | + env: |
| 222 | + PY_COLORS: '1' |
| 223 | + ANSIBLE_FORCE_COLOR: '1' |
0 commit comments