mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
* Fix CI: Use Python 3.13 for ansible-test compatibility ansible-test only supports Python 3.11, 3.12, and 3.13. Changed collection-integration jobs from '3.x' to '3.13' to avoid using Python 3.14 which is not supported. * Fix ansible-test Python version for CI integration tests ansible-test only supports Python 3.11, 3.12, and 3.13. Added ANSIBLE_TEST_PYTHON_VERSION variable to explicitly pass --python 3.13 flag to ansible-test integration command. This prevents ansible-test from auto-detecting and using Python 3.14.0, which is not supported. * Fix CI: Execute ansible-test with Python 3.13 to avoid unsupported Python 3.14 * Fix CI: Use Python 3.13 across all jobs to avoid Python 3.14 compatibility issues * Fix CI: Use 'python' and 'ansible.test' module for Python 3.13 compatibility * Fix CI: Use 'python' instead of 'python3' for Python 3.13 compatibility * Fix CI: Ensure ansible-test uses Python 3.13 environment explicitly * Fix: Remove silent failure check for ansible-core in test suite * Fix CI: Export PYTHONPATH to make awxkit available to ansible-test * Fix CI: Use 'python' in run_awx_devel to maintain Python 3.13 environment * Fix CI: Remove setup-python from awx_devel_image that was resetting Python 3.13 to 3.14
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: Setup images for AWX
|
|
description: Builds new awx_devel image
|
|
inputs:
|
|
github-token:
|
|
description: GitHub Token for registry access
|
|
required: true
|
|
private-github-key:
|
|
description: GitHub private key for private repositories
|
|
required: false
|
|
default: ''
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set lower case owner name
|
|
shell: bash
|
|
run: echo "OWNER_LC=${OWNER,,}" >> $GITHUB_ENV
|
|
env:
|
|
OWNER: '${{ github.repository_owner }}'
|
|
|
|
- name: Log in to registry
|
|
shell: bash
|
|
run: |
|
|
echo "${{ inputs.github-token }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
|
|
|
- uses: ./.github/actions/setup-ssh-agent
|
|
with:
|
|
ssh-private-key: ${{ inputs.private-github-key }}
|
|
|
|
- name: Pre-pull latest devel image to warm cache
|
|
shell: bash
|
|
run: |
|
|
DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC} \
|
|
COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \
|
|
docker pull -q `make print-DEVEL_IMAGE_NAME`
|
|
continue-on-error: true
|
|
|
|
- name: Build image for current source checkout
|
|
shell: bash
|
|
run: |
|
|
DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER_LC} \
|
|
COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \
|
|
make docker-compose-build
|