Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bodsch committed May 25, 2024
1 parent 9e8f319 commit 8686b53
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/configured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ defaults:
working-directory: 'ansible-automysqlbackup'

jobs:

debian:
name: "${{ matrix.scenario }} | ${{ matrix.image }} / ansible: ${{ matrix.ansible-version }}"
name: "${{ matrix.image }} / python: ${{ matrix.python_version }} / ansible: ${{ matrix.ansible-version }}"
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'schedule' || github.event.workflow_run.conclusion == 'success' }}
strategy:
Expand All @@ -27,8 +26,12 @@ jobs:
python_version:
- "3.10.11"
- "3.11.3"
- "3.12.3"
ansible-version:
- '6.7'
- '7.5'
- '8.5'
- '9.5'
scenario:
- systemd-timer
- crond
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defaults:

jobs:
arch:
name: "${{ matrix.image }} / ansible: ${{ matrix.ansible-version }}"
name: "${{ matrix.image }} / python: ${{ matrix.python_version }} / ansible: ${{ matrix.ansible-version }}"
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'schedule' || github.event.workflow_run.conclusion == 'success' }}
strategy:
Expand Down Expand Up @@ -59,14 +59,13 @@ jobs:
DISTRIBUTION: ${{ matrix.image }}

debian:
name: "${{ matrix.image }} / ansible: ${{ matrix.ansible-version }}"
name: "${{ matrix.image }} / python: ${{ matrix.python_version }} / ansible: ${{ matrix.ansible-version }}"
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'schedule' || github.event.workflow_run.conclusion == 'success' }}
strategy:
fail-fast: false
matrix:
image:
- debian:10
- debian:11
- debian:12
python_version:
Expand Down Expand Up @@ -106,7 +105,7 @@ jobs:
DISTRIBUTION: ${{ matrix.image }}

ubuntu:
name: "${{ matrix.image }} / ansible: ${{ matrix.ansible-version }}"
name: "${{ matrix.image }} / python: ${{ matrix.python_version }} / ansible: ${{ matrix.ansible-version }}"
runs-on: ubuntu-20.04
if: ${{ github.event_name == 'schedule' || github.event.workflow_run.conclusion == 'success' }}
strategy:
Expand Down
7 changes: 4 additions & 3 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ galaxy_info:
author: Bodo Schulz
description: ansible role to install and configure automysqlbackup
license: Apache
min_ansible_version: "2.8"
min_ansible_version: "2.10"

platforms:
- name: ArchLinux
- name: Debian
versions:
# 10
- buster
# 11
- bullseye
- bookworm
Expand All @@ -25,5 +23,8 @@ galaxy_info:

galaxy_tags:
- "system"
- "backup"
- "mysql"
- "mariadb"

dependencies: []

0 comments on commit 8686b53

Please sign in to comment.