Skip to content

Commit 6d8e15d

Browse files
committed
Merge bitcoin#35571: ci: use warp docker buildkit cache
b552f17 ci: use warp docker buildkit cache (will) Pull request description: This was inadvertently broken in bitcoin#35441 when we dropped the runners job. Unfortunately GHA seems to continue just fine when this field is empty, so it wasn't noticed at runtime. ACKs for top commit: m3dwards: ACK b552f17 Tree-SHA512: 0bc61b42e94b0a73ef6026dea3dce27fdea611218936e585b5232fde358b4fab4728d59338b86c75affec80c11b6f1fada56ffb785999fabae0b01becb41268d
2 parents 33e3c75 + b552f17 commit 6d8e15d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ jobs:
345345
- name: Configure Docker
346346
uses: ./.github/actions/configure-docker
347347
with:
348-
provider: ${{ needs.runners.outputs.provider }}
348+
provider: ${{ github.repository == 'bitcoin/bitcoin' && 'warp' || 'gha' }}
349349

350350
- name: CI script
351351
run: ./ci/test_run_all.sh
@@ -540,7 +540,7 @@ jobs:
540540
- name: Configure Docker
541541
uses: ./.github/actions/configure-docker
542542
with:
543-
provider: ${{ matrix.provider || needs.runners.outputs.provider }}
543+
provider: ${{ matrix.provider || (github.repository == 'bitcoin/bitcoin' && 'warp' || 'gha') }}
544544

545545
- name: Clear unnecessary files
546546
if: ${{ github.repository != 'bitcoin/bitcoin' || matrix.provider == 'gha' }} # Only needed on GHA runners
@@ -584,7 +584,7 @@ jobs:
584584
- name: Configure Docker
585585
uses: ./.github/actions/configure-docker
586586
with:
587-
provider: ${{ needs.runners.outputs.provider }}
587+
provider: ${{ github.repository == 'bitcoin/bitcoin' && 'warp' || 'gha' }}
588588

589589
- name: CI script
590590
run: |

0 commit comments

Comments
 (0)