diff options
author | Alan Rominger <arominge@redhat.com> | 2025-01-02 22:19:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-02 22:19:59 +0100 |
commit | 2657ea840b8c6eb2890c6866ae0ccfc1713bcfd4 (patch) | |
tree | 8c7e6b829cd915562807c2a679d55f517cca847e /.github | |
parent | Bugfix: adjust incorrectly passed keywords with exclude-strings argument (#15... (diff) | |
download | awx-2657ea840b8c6eb2890c6866ae0ccfc1713bcfd4.tar.xz awx-2657ea840b8c6eb2890c6866ae0ccfc1713bcfd4.zip |
Disable color logs in CI (#15719)
* Disable color logs in CI
* Disable management command color
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/run_awx_devel/action.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/actions/run_awx_devel/action.yml b/.github/actions/run_awx_devel/action.yml index e98e6479e2..b7d11cf17d 100644 --- a/.github/actions/run_awx_devel/action.yml +++ b/.github/actions/run_awx_devel/action.yml @@ -34,7 +34,9 @@ runs: run: | DEV_DOCKER_OWNER=${{ github.repository_owner }} \ COMPOSE_TAG=${{ github.base_ref || github.ref_name }} \ - COMPOSE_UP_OPTS="-d" \ + DJANGO_COLORS=nocolor \ + SUPERVISOR_ARGS="-n -t" \ + COMPOSE_UP_OPTS="-d --no-color" \ make docker-compose - name: Update default AWX password |