mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 06:28:01 -03:30
Merge ui and ui_next in one dir See: https://github.com/ansible/awx/issues/10676 Update django .po files Update django .po files Run `awx-manage makemessages`.
28 lines
933 B
YAML
28 lines
933 B
YAML
---
|
|
- name: Set global version if not provided
|
|
set_fact:
|
|
awx_version: "{{ lookup('file', playbook_dir + '/../../VERSION') }}"
|
|
when: awx_version is not defined
|
|
|
|
- name: Verify awx-logos directory exists for official install
|
|
stat:
|
|
path: "../../../awx-logos"
|
|
register: logosdir
|
|
failed_when: logosdir.stat.isdir is not defined or not logosdir.stat.isdir
|
|
when: awx_official|default(false)|bool
|
|
|
|
- name: Copy logos for inclusion in sdist
|
|
copy:
|
|
src: "../../../awx-logos/awx/ui/client/assets/"
|
|
dest: "../../awx/ui/public/static/media/"
|
|
when: awx_official|default(false)|bool
|
|
|
|
# Calling Docker directly because docker-py doesnt support BuildKit
|
|
- name: Build AWX image
|
|
command: docker build -t {{ awx_image }}:{{ awx_version }} -f ../../{{ dockerfile_name }} ../..
|
|
|
|
- name: Tag awx images as latest
|
|
command: "docker tag {{ item }}:{{ awx_version }} {{ item }}:latest"
|
|
with_items:
|
|
- "{{ awx_image }}"
|