mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-07 03:00:33 -07:00
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>
15 lines
423 B
Bash
Executable file
15 lines
423 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright (c) Ansible project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# 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 "$@"
|
|
|
|
ANSIBLE_ROLES_PATH=../ \
|
|
ansible-playbook test.yml -v "$@"
|