Skip to content

Commit

Permalink
Welcome to 2025.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-de-bock committed Jan 6, 2025
1 parent 32d9d76 commit 0a67278
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 24 deletions.
48 changes: 46 additions & 2 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- image: "debian"
tag: "bullseye"
- image: "fedora"
tag: "39"
tag: "40"
- image: "fedora"
tag: "latest"
- image: "fedora"
Expand Down Expand Up @@ -89,7 +89,51 @@ jobs:
- image: "debian"
tag: "bullseye"
- image: "fedora"
tag: "39"
tag: "40"
- image: "fedora"
tag: "latest"
- image: "fedora"
tag: "rawhide"
- image: "ubuntu"
tag: "latest"
- image: "ubuntu"
tag: "jammy"
- image: "ubuntu"
tag: "focal"
steps:
- name: checkout
uses: actions/checkout@v4

- name: molecule
run: |
apt-get update -qq
apt-get -y -qq install yamllint docker.io
pip install --no-cache-dir tox
if [ -f tox.ini ] ; then tox ; fi
if [ ! -f tox.ini ] ; then pip install -r requirements.yml ; pip install ansible-lint ansible-core ; molecule test ; fi
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
python-3-13:
needs:
- lint
runs-on: ubuntu-20.04
container:
image: python:3.13
strategy:
fail-fast: false
matrix:
config:
- image: "alpine"
tag: "latest"
- image: "enterpriselinux"
tag: "latest"
- image: "debian"
tag: "latest"
- image: "debian"
tag: "bullseye"
- image: "fedora"
tag: "40"
- image: "fedora"
tag: "latest"
- image: "fedora"
Expand Down
22 changes: 11 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,37 @@ molecule:
matrix:
- image: "alpine"
tag: "latest"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "amazonlinux"
tag: "latest"
python: ['python:3.9', 'python:3.10']
- image: "enterpriselinux"
tag: "latest"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "debian"
tag: "latest"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "debian"
tag: "bullseye"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "fedora"
tag: "39"
python: ['python:3.9', 'python:3.10']
tag: "40"
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "fedora"
tag: "latest"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "fedora"
tag: "rawhide"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "ubuntu"
tag: "latest"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "ubuntu"
tag: "jammy"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']
- image: "ubuntu"
tag: "focal"
python: ['python:3.9', 'python:3.10']
python: ['python:3.9', 'python:3.10', 'python:3.13']

galaxy:
script:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2024 Robert de Bock (robert@meinit.nl)
Copyright 2025 Robert de Bock (robert@meinit.nl)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
17 changes: 7 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = ansible-2.{15,16,17}
envlist = ansible-2.{15,16,17,18}
skipsdist = true

[testenv]
Expand Down Expand Up @@ -37,12 +37,9 @@ deps =
ansible-core==2.17.*
ansible-lint==24.*

# Future work, not releases, just prepared. See:
# https://docs.ansible.com/ansible/devel//roadmap/ROADMAP_2_18.html
# Note: enable python3.13 in `vars/main.yml` as well.
# [testenv:ansible-2.18]
# basepython = python3.13
# deps =
# -rrequirements.txt
# ansible-core==2.18.*
# ansible-lint==24.*
[testenv:ansible-2.18]
basepython = python3.13
deps =
-rrequirements.txt
ansible-core==2.18.*
ansible-lint==24.*

0 comments on commit 0a67278

Please sign in to comment.