mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
Bump migrations and delete some files Resolve remaining conflicts Fix requirements Flake8 fixes Prefer devel changes for schema Use correct versions Remove sso connected stuff Update to modern actions and collection fixes Remove unwated alias Version problems in actions Fix more versioning problems Update warning string Messed it up again Shorten exception More removals Remove pbr license Remove tests deleted in devel Remove unexpected files Remove some content missed in the rebase Use sleep_task from devel Restore devel live conftest file Add in settings that got missed Prefer devel version of collection test Finish repairing .github path Remove unintended test file duplication Undo more unintended file additions
80 lines
2.3 KiB
YAML
80 lines
2.3 KiB
YAML
---
|
|
name: Build/Push Development Images
|
|
env:
|
|
LC_ALL: "C.UTF-8" # prevent ERROR: Ansible could not initialize the preferred locale: unsupported locale setting
|
|
DOCKER_CACHE: "--no-cache" # using the cache will not rebuild git requirements and other things
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- devel
|
|
- release_*
|
|
- feature_*
|
|
- stable-*
|
|
jobs:
|
|
push-development-images:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 120
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
build-targets:
|
|
- image-name: awx_devel
|
|
make-target: docker-compose-buildx
|
|
- image-name: awx_kube_devel
|
|
make-target: awx-kube-dev-buildx
|
|
- image-name: awx
|
|
make-target: awx-kube-buildx
|
|
steps:
|
|
|
|
- name: Skipping build of awx image for non-awx repository
|
|
run: |
|
|
echo "Skipping build of awx image for non-awx repository"
|
|
exit 0
|
|
if: matrix.build-targets.image-name == 'awx' && !endsWith(github.repository, '/awx')
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Set GITHUB_ENV variables
|
|
run: |
|
|
echo "DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER,,}" >> $GITHUB_ENV
|
|
echo "COMPOSE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
|
|
env:
|
|
OWNER: '${{ github.repository_owner }}'
|
|
|
|
- uses: ./.github/actions/setup-python
|
|
|
|
- name: Log in to registry
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
|
|
|
- name: Setup node and npm for the new UI build
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '18'
|
|
if: matrix.build-targets.image-name == 'awx'
|
|
|
|
- name: Prebuild new UI for awx image (to speed up build process)
|
|
run: |
|
|
make ui
|
|
if: matrix.build-targets.image-name == 'awx'
|
|
|
|
- uses: ./.github/actions/setup-ssh-agent
|
|
with:
|
|
ssh-private-key: ${{ secrets.PRIVATE_GITHUB_KEY }}
|
|
|
|
- name: Build and push AWX devel images
|
|
run: |
|
|
make ${{ matrix.build-targets.make-target }}
|