summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorShane McDonald <me@shanemcd.com>2021-10-13 18:20:26 +0200
committerShane McDonald <me@shanemcd.com>2021-11-10 01:50:08 +0100
commit166090091439cd407a0ed881da748f2f2fcfadaf (patch)
tree14aaa1351fc524f75be5ffde8ae1fb631a829a5a /.github
parentMerge pull request #11282 from kialam/upgrade-d3-to-v7 (diff)
downloadawx-166090091439cd407a0ed881da748f2f2fcfadaf.tar.xz
awx-166090091439cd407a0ed881da748f2f2fcfadaf.zip
Dont fail CI when pre-built images arent available
CI will build the image from scratch if the pre-build image is not available
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml12
-rw-r--r--.github/workflows/upload_schema.yml2
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 70e8b37b99..0953a16727 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
@@ -43,7 +43,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
@@ -91,7 +91,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
@@ -115,7 +115,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
@@ -139,7 +139,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
@@ -163,7 +163,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${{ env.BRANCH }} || :
- name: Build image
run: |
diff --git a/.github/workflows/upload_schema.yml b/.github/workflows/upload_schema.yml
index 4d90f96a66..3b73e8c956 100644
--- a/.github/workflows/upload_schema.yml
+++ b/.github/workflows/upload_schema.yml
@@ -19,7 +19,7 @@ jobs:
- name: Pre-pull image to warm build cache
run: |
- docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/}
+ docker pull ghcr.io/${{ github.repository_owner }}/awx_devel:${GITHUB_REF##*/} || :
- name: Build image
run: |