mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 10:10:01 -03:30
Suppress docker pull output in checks (#15323)
Supress docker pull output in checks
This commit is contained in:
2
.github/actions/awx_devel_image/action.yml
vendored
2
.github/actions/awx_devel_image/action.yml
vendored
@@ -24,7 +24,7 @@ runs:
|
|||||||
|
|
||||||
- name: Pre-pull latest devel image to warm cache
|
- name: Pre-pull latest devel image to warm cache
|
||||||
shell: bash
|
shell: bash
|
||||||
run: docker pull ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref }}
|
run: docker pull -q ghcr.io/${OWNER_LC}/awx_devel:${{ github.base_ref }}
|
||||||
|
|
||||||
- name: Build image for current source checkout
|
- name: Build image for current source checkout
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
6
.github/workflows/stage.yml
vendored
6
.github/workflows/stage.yml
vendored
@@ -136,9 +136,9 @@ jobs:
|
|||||||
- name: Pulling images for test deployment with awx-operator
|
- name: Pulling images for test deployment with awx-operator
|
||||||
# awx operator molecue test expect to kind load image and buildx exports image to registry and not local
|
# awx operator molecue test expect to kind load image and buildx exports image to registry and not local
|
||||||
run: |
|
run: |
|
||||||
docker pull ${AWX_OPERATOR_TEST_IMAGE}
|
docker pull -q ${AWX_OPERATOR_TEST_IMAGE}
|
||||||
docker pull ${AWX_EE_TEST_IMAGE}
|
docker pull -q ${AWX_EE_TEST_IMAGE}
|
||||||
docker pull ${AWX_TEST_IMAGE}:${AWX_TEST_VERSION}
|
docker pull -q ${AWX_TEST_IMAGE}:${AWX_TEST_VERSION}
|
||||||
|
|
||||||
- name: Run test deployment with awx-operator
|
- name: Run test deployment with awx-operator
|
||||||
working-directory: awx-operator
|
working-directory: awx-operator
|
||||||
|
|||||||
2
.github/workflows/upload_schema.yml
vendored
2
.github/workflows/upload_schema.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Pre-pull image to warm build cache
|
- name: Pre-pull image to warm build cache
|
||||||
run: |
|
run: |
|
||||||
docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/} || :
|
docker pull -q ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/} || :
|
||||||
|
|
||||||
- name: Build image
|
- name: Build image
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user