File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments