diff options
author | Alan Rominger <arominge@redhat.com> | 2023-05-02 17:47:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 17:47:29 +0200 |
commit | f012a69c9348ac12247180d492f90c0ba58c877a (patch) | |
tree | a781f279a42fa056c2e65bd323186fce9ed31b08 /Makefile | |
parent | Merge pull request #13915 from marshmalien/10877-dup-freq-types-schedule (diff) | |
download | awx-f012a69c9348ac12247180d492f90c0ba58c877a.tar.xz awx-f012a69c9348ac12247180d492f90c0ba58c877a.zip |
Allow running AWX checks on forks (#13938)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -42,7 +42,10 @@ TACACS ?= false VENV_BASE ?= /var/lib/awx/venv -DEV_DOCKER_TAG_BASE ?= ghcr.io/ansible +DEV_DOCKER_OWNER ?= ansible +# Docker will only accept lowercase, so github names like Paul need to be paul +DEV_DOCKER_OWNER_LOWER = $(shell echo $(DEV_DOCKER_OWNER) | tr A-Z a-z) +DEV_DOCKER_TAG_BASE ?= ghcr.io/$(DEV_DOCKER_OWNER_LOWER) DEVEL_IMAGE_NAME ?= $(DEV_DOCKER_TAG_BASE)/awx_devel:$(COMPOSE_TAG) RECEPTOR_IMAGE ?= quay.io/ansible/receptor:devel |