[PR #9310/2adcc34d backport][stable-10] CI: Arch Linux updated to Python 3.13 (#9314)

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 2adcc34dd5)

Co-authored-by: Felix Fontein <felix@fontein.de>
pull/9326/head
patchback[bot] 2024-12-22 22:23:33 +01:00 committed by GitHub
parent f2196d452f
commit 28fed38757
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -345,7 +345,7 @@ stages:
- name: Debian Bookworm - name: Debian Bookworm
test: debian-bookworm/3.11 test: debian-bookworm/3.11
- name: ArchLinux - name: ArchLinux
test: archlinux/3.12 test: archlinux/3.13
groups: groups:
- 1 - 1
- 2 - 2

View File

@ -4,6 +4,10 @@
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
set -eux set -eux
if grep -Fq 'NAME="Arch Linux"' /etc/os-release; then
exit 0
fi
ANSIBLE_ROLES_PATH=../ \ ANSIBLE_ROLES_PATH=../ \
ansible-playbook dependencies.yml -v "$@" ansible-playbook dependencies.yml -v "$@"