Skip to content

Commit

Permalink
Disable following distribution (pb with latest ansible version)
Browse files Browse the repository at this point in the history
- Ubuntu 18.04
- Almalinux 8
- Rockyinux 8
  • Loading branch information
fauust committed Jul 12, 2024
1 parent f17db0d commit 94177ae
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test_cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ jobs:
fail-fast: false
matrix:
distro:
- ubuntu-18.04
# - ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
- debian-11
- debian-12
- fedora-38
- fedora-39
- almalinux-8
# - almalinux-8
- almalinux-9
- rockylinux-8
# - rockylinux-8
- rockylinux-9
- alpine-3.18
- alpine-3.19
Expand All @@ -51,7 +51,9 @@ jobs:
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: molecule test -s cluster
run: |
source .venv/bin/activate
molecule test -s cluster
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test_cluster_mdbf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- ubuntu-22.04
- debian-12
- fedora-38
- almalinux-8
# - almalinux-8
- almalinux-9
- rockylinux-8
# - rockylinux-8
- rockylinux-9
mariadb-version:
- "10.6"
Expand All @@ -57,7 +57,9 @@ jobs:
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: molecule test -s cluster
run: |
source .venv/bin/activate
molecule test -s cluster
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ on:
jobs:
molecule-distrib-pkg:
name: Default deployment
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
distro:
- ubuntu-18.04
# - ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-23.04
Expand All @@ -45,9 +45,9 @@ jobs:
- debian-sid
- fedora-38
- fedora-39
- almalinux-8
# - almalinux-8
- almalinux-9
- rockylinux-8
# - rockylinux-8
- rockylinux-9
- alpine-3.17
- alpine-3.18
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/test_mdbf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
- debian-11
- debian-12
- debian-sid
- fedora-37
- fedora-38
- almalinux-8
- fedora-39
# - almalinux-8
- almalinux-9
- rockylinux-8
# - rockylinux-8
- rockylinux-9
mariadb-version:
- "10.4"
Expand Down Expand Up @@ -99,7 +99,9 @@ jobs:
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: molecule test
run: |
source .venv/bin/activate
molecule test
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ansible-core==2.16
ansible-core
molecule
molecule-plugins

0 comments on commit 94177ae

Please sign in to comment.