forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache-warming-kurtosis-cl-images.yml
More file actions
40 lines (35 loc) · 1.28 KB
/
Copy pathcache-warming-kurtosis-cl-images.yml
File metadata and controls
40 lines (35 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Cache Warming — Kurtosis CL images
# Populates the base-branch docker-cl-* image cache that test-kurtosis-assertoor.yml
# restores. Its warm path is skipped on cache-warming runs, so PR / merge_group runs
# otherwise never get this cache and pull every third-party image from Docker Hub.
# GitHub cache scoping makes default-branch caches readable from every PR and merge
# group, so warming on main/release is enough.
#
# Triggers:
# - push to a protected branch touching test-kurtosis-assertoor.yml -> warm on a version bump
# - schedule (daily) -> safety net if LRU-evicted
# - workflow_dispatch -> manual (use once to bootstrap)
#
# The cache key is derived from the pinned image versions, which all live in
# test-kurtosis-assertoor.yml — hence the paths filter on that file.
on:
push:
branches:
- main
- 'release/**'
paths:
- '.github/workflows/test-kurtosis-assertoor.yml'
schedule:
- cron: '27 5 * * *'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
permissions:
contents: read
jobs:
warm:
uses: ./.github/workflows/test-kurtosis-assertoor.yml
with:
cl-images-only: true
secrets: inherit