diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-07 05:34:10 +0000 |
commit | 83767dd892fb9c94d000c123a44f19e564d11b6e (patch) | |
tree | 0684bc85fdc395fc5aadaa5ad68ba3ec9d4a64a7 /ansible_collections/kaytus/ksmanage/.github/workflows | |
parent | Releasing progress-linux version 10.0.0+dfsg-1~progress7.99u1. (diff) | |
download | ansible-83767dd892fb9c94d000c123a44f19e564d11b6e.tar.xz ansible-83767dd892fb9c94d000c123a44f19e564d11b6e.zip |
Merging upstream version 10.0.1+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/kaytus/ksmanage/.github/workflows')
-rw-r--r-- | ansible_collections/kaytus/ksmanage/.github/workflows/ansible-test.yml | 108 |
1 files changed, 54 insertions, 54 deletions
diff --git a/ansible_collections/kaytus/ksmanage/.github/workflows/ansible-test.yml b/ansible_collections/kaytus/ksmanage/.github/workflows/ansible-test.yml index fbb52168f..7e473ef43 100644 --- a/ansible_collections/kaytus/ksmanage/.github/workflows/ansible-test.yml +++ b/ansible_collections/kaytus/ksmanage/.github/workflows/ansible-test.yml @@ -1,54 +1,54 @@ -name: CI
-on:
- pull_request:
- push:
- # Run CI once per day (at 06:00 UTC)
- # This ensures that even if there haven't been commits that we are still testing against latest version of ansible-test for each ansible-base version
- schedule:
- - cron: '0 6 * * *'
-
-jobs:
- sanity:
- name: Sanity (${{ matrix.ansible }})
- strategy:
- matrix:
- ansible:
- - stable-2.14
- - stable-2.15
- - stable-2.16
- - stable-2.17
- - devel
- python-version:
- - '3.9'
- - '3.10'
- - '3.11'
- - '3.12'
- exclude:
- - ansible: stable-2.14
- python-version: '3.12'
- - ansible: stable-2.15
- python-version: '3.12'
- - ansible: stable-2.16
- python-version: '3.9'
- - ansible: stable-2.17
- python-version: '3.9'
- - ansible: devel
- python-version: '3.9'
- runs-on: ubuntu-latest
- steps:
-
- - name: Check out code
- uses: actions/checkout@v1
- with:
- path: ansible_collections/kaytus/ksmanage
-
- - name: Set up Python (${{ matrix.python-version }})
- uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.python-version }}
-
- - 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
+name: CI +on: + pull_request: + push: + # Run CI once per day (at 06:00 UTC) + # This ensures that even if there haven't been commits that we are still testing against latest version of ansible-test for each ansible-base version + schedule: + - cron: '0 6 * * *' + +jobs: + sanity: + name: Sanity (${{ matrix.ansible }}) + strategy: + matrix: + ansible: + - stable-2.14 + - stable-2.15 + - stable-2.16 + - stable-2.17 + - devel + python-version: + - '3.9' + - '3.10' + - '3.11' + - '3.12' + exclude: + - ansible: stable-2.14 + python-version: '3.12' + - ansible: stable-2.15 + python-version: '3.12' + - ansible: stable-2.16 + python-version: '3.9' + - ansible: stable-2.17 + python-version: '3.9' + - ansible: devel + python-version: '3.9' + runs-on: ubuntu-latest + steps: + + - name: Check out code + uses: actions/checkout@v1 + with: + path: ansible_collections/kaytus/ksmanage + + - name: Set up Python (${{ matrix.python-version }}) + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + + - 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 |