Skip to content

Commit 9e7c4ad

Browse files
committed
Update run-pr-tests.yaml
1 parent 8da539a commit 9e7c4ad

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/run-pr-tests.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ jobs:
9898
9999
- name: Pull noobaa-base image
100100
id: pull_base_image
101-
if: ${{ steps.should_build_base.outputs.should_build == 'false' }}
101+
# Pulling is always faster than building, and as we are not squashing some layers does not need to be rebuilt
102+
# if: ${{ steps.should_build_base.outputs.should_build == 'false' }}
102103
run: |
103104
output=false
104105
for i in $(seq 0 ${{ steps.prep.outputs.pull_tries }})
@@ -116,8 +117,9 @@ jobs:
116117
117118
- name: Pull noobaa-builder image
118119
id: should_build_builder
119-
if: ${{steps.should_build_base.outputs.should_build == 'true' ||
120-
steps.pull_base_image.outputs.pull_succeed == 'false'}}
120+
# Pulling is always faster than building, and as we are not squashing some layers does not need to be rebuilt
121+
# if: ${{steps.should_build_base.outputs.should_build == 'true' ||
122+
# steps.pull_base_image.outputs.pull_succeed == 'false'}}
121123
run: |
122124
output=true
123125
should_pull=true

0 commit comments

Comments
 (0)