From f9086b46802b707b27676c0add1d26f988278c9d Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 22:23:31 +0100 Subject: [PATCH] [PR #9310/2adcc34d backport][stable-9] CI: Arch Linux updated to Python 3.13 (#9313) CI: Arch Linux updated to Python 3.13 (#9310) * Arch Linux updated to Python 3.13. * Skip lmdb_kv lookup on Arch Linux. Ref: https://github.com/jnwatson/py-lmdb/issues/362 (cherry picked from commit 2adcc34dd551f54d2f81a34d6a7b299b290f9430) Co-authored-by: Felix Fontein --- .azure-pipelines/azure-pipelines.yml | 2 +- tests/integration/targets/lookup_lmdb_kv/runme.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index 362b5d59dd..b9d428f2b0 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -345,7 +345,7 @@ stages: - name: Debian Bookworm test: debian-bookworm/3.11 - name: ArchLinux - test: archlinux/3.12 + test: archlinux/3.13 groups: - 1 - 2 diff --git a/tests/integration/targets/lookup_lmdb_kv/runme.sh b/tests/integration/targets/lookup_lmdb_kv/runme.sh index 71faa439d1..286ec6b16d 100755 --- a/tests/integration/targets/lookup_lmdb_kv/runme.sh +++ b/tests/integration/targets/lookup_lmdb_kv/runme.sh @@ -4,6 +4,10 @@ # SPDX-License-Identifier: GPL-3.0-or-later set -eux +if grep -Fq 'NAME="Arch Linux"' /etc/os-release; then + exit 0 +fi + ANSIBLE_ROLES_PATH=../ \ ansible-playbook dependencies.yml -v "$@"