mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 18:30:27 -07:00
Merge pull request #640 from ansible-collections/update-ci
Bump min Ansible version to 2.16
This commit is contained in:
commit
44e8bff0d3
6 changed files with 32 additions and 29 deletions
11
.github/workflows/ansible-integration-tests.yml
vendored
11
.github/workflows/ansible-integration-tests.yml
vendored
|
@ -21,9 +21,12 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
max-parallel: 1
|
max-parallel: 1
|
||||||
matrix:
|
matrix:
|
||||||
|
# Our current version strategy is to support both supported versions of ansible-core
|
||||||
|
# and test against the minimum version of Python supported by both. If/when we change
|
||||||
|
# the integration tests to support parallelism we can revisit.
|
||||||
ansible_version:
|
ansible_version:
|
||||||
- stable-2.14
|
- stable-2.16
|
||||||
- stable-2.15
|
- stable-2.17
|
||||||
steps:
|
steps:
|
||||||
- name: check out code
|
- name: check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -32,7 +35,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.9' # this is the minimum version required for Ansible 2.15
|
python-version: '3.10' # this is the minimum version required for Ansible 2.16
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r requirements.txt
|
run: pip install -r requirements.txt
|
||||||
- name: Install ansible-base (${{ matrix.ansible_version }})
|
- name: Install ansible-base (${{ matrix.ansible_version }})
|
||||||
|
@ -67,4 +70,4 @@ jobs:
|
||||||
# run tests
|
# run tests
|
||||||
- name: Run integration tests
|
- name: Run integration tests
|
||||||
# Add the -vvv flag to print out more output
|
# Add the -vvv flag to print out more output
|
||||||
run: ansible-test integration -v --color --python 3.9 --venv-system-site-packages
|
run: ansible-test integration -v --color --python 3.10 --venv-system-site-packages
|
||||||
|
|
38
.github/workflows/ansible-test.yml
vendored
38
.github/workflows/ansible-test.yml
vendored
|
@ -1,8 +1,6 @@
|
||||||
---
|
---
|
||||||
name: Run tests for the cloud.google collection
|
name: Run tests for the cloud.google collection
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
env:
|
|
||||||
PYTHON_VERSION: "3.9" # minimum version for Ansible 2.15
|
|
||||||
jobs:
|
jobs:
|
||||||
sanity-and-lint:
|
sanity-and-lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -11,9 +9,16 @@ jobs:
|
||||||
working-directory: ansible_collections/google/cloud
|
working-directory: ansible_collections/google/cloud
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
# Our version strategy is to test against the current and previous version
|
||||||
|
# of ansible-core and each major version of Python supported by both.
|
||||||
|
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
|
||||||
ansible_version:
|
ansible_version:
|
||||||
- stable-2.14
|
- stable-2.16
|
||||||
- stable-2.15
|
- stable-2.17
|
||||||
|
python_version:
|
||||||
|
- '3.10'
|
||||||
|
- '3.11'
|
||||||
|
- '3.12'
|
||||||
steps:
|
steps:
|
||||||
- name: check out code
|
- name: check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -23,23 +28,14 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ env.PYTHON_VERSION }}
|
python-version: ${{ matrix.python_version }}
|
||||||
# Automation-hub requires python2.7 sanity tests
|
|
||||||
- name: setup python2.7
|
|
||||||
run: |
|
|
||||||
sudo apt-add-repository universe
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install python2.7
|
|
||||||
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
|
|
||||||
sudo /usr/bin/python2.7 get-pip.py
|
|
||||||
pip2 install virtualenv
|
|
||||||
- name: Install ansible-base (${{ matrix.ansible_version }})
|
- name: Install ansible-base (${{ matrix.ansible_version }})
|
||||||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
||||||
- name: Run ansible-test sanity
|
- name: Run ansible-test sanity
|
||||||
# validate-modules cannot be turned on until #498 is resolved.
|
# validate-modules cannot be turned on until #498 is resolved.
|
||||||
run: ansible-test sanity -v --color --skip validate-modules
|
run: ansible-test sanity -v --color --skip validate-modules
|
||||||
- name: Install ansible-lint
|
- name: Install ansible-lint
|
||||||
run: pip install ansible-lint==6.22.0
|
run: pip install ansible-lint==24.7.0
|
||||||
- name: Run ansible-lint
|
- name: Run ansible-lint
|
||||||
run: ansible-lint
|
run: ansible-lint
|
||||||
unit:
|
unit:
|
||||||
|
@ -50,8 +46,12 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ansible_version:
|
ansible_version:
|
||||||
- stable-2.14
|
- stable-2.16
|
||||||
- stable-2.15
|
- stable-2.17
|
||||||
|
python_version:
|
||||||
|
- '3.10'
|
||||||
|
- '3.11'
|
||||||
|
- '3.12'
|
||||||
steps:
|
steps:
|
||||||
- name: check out code
|
- name: check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -60,7 +60,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ env.PYTHON_VERSION }}
|
python-version: ${{ matrix.python_version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r requirements.txt
|
run: pip install -r requirements.txt
|
||||||
- name: Install test dependencies
|
- name: Install test dependencies
|
||||||
|
@ -68,4 +68,4 @@ jobs:
|
||||||
- name: Install ansible-base (${{ matrix.ansible_version }})
|
- name: Install ansible-base (${{ matrix.ansible_version }})
|
||||||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: ansible-test units -v --color --python "$PYTHON_VERSION"
|
run: ansible-test units -v --color --python "${{ matrix.python_version }}"
|
||||||
|
|
4
.github/workflows/gcloud.yml
vendored
4
.github/workflows/gcloud.yml
vendored
|
@ -31,10 +31,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ansible_collections/google/cloud
|
path: ansible_collections/google/cloud
|
||||||
|
|
||||||
- name: Set up Python 3.9
|
- name: Set up Python 3.10
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: '3.10'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
4
.github/workflows/gcsfuse.yml
vendored
4
.github/workflows/gcsfuse.yml
vendored
|
@ -26,10 +26,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ansible_collections/google/cloud
|
path: ansible_collections/google/cloud
|
||||||
|
|
||||||
- name: Set up Python 3.9
|
- name: Set up Python 3.10
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: '3.10'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Google Cloud Platform Ansible Collection
|
# Google Cloud Platform Ansible Collection
|
||||||
This collection provides a series of Ansible modules and plugins for interacting with the [Google Cloud Platform](https://cloud.google.com)
|
This collection provides a series of Ansible modules and plugins for interacting with the [Google Cloud Platform](https://cloud.google.com)
|
||||||
|
|
||||||
This collection works with Ansible 2.14+
|
This collection works with Ansible 2.16+
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
requires_ansible: ">=2.14.0"
|
requires_ansible: ">=2.16.0"
|
||||||
|
|
||||||
action_groups:
|
action_groups:
|
||||||
gcp:
|
gcp:
|
||||||
|
|
Loading…
Add table
Reference in a new issue