File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -78,15 +78,12 @@ jobs:
78
78
uses : actions/cache@v4
79
79
with :
80
80
path : ${{ github.workspace }}/builder/.ccache
81
- key : builder-ccache-${{ matrix.arch }}-${{ format('YYYY-MM-DDTHH:mm:ssZ', github.event.head_commit.timestamp) }}
81
+ key : builder-ccache-${{ matrix.arch }}-${{ github.event.head_commit.timestamp }}
82
82
restore-keys : |
83
83
builder-ccache-${{ matrix.arch }}-
84
84
85
- - name : Setup builder ccache in docker cache
86
- if : |
87
- (github.event_name != 'pull_request' && matrix.arch != 's390x') ||
88
- matrix.arch == 'amd64' ||
89
- (contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds') && matrix.arch != 's390x')
85
+ - name : Set up builder ccache in docker cache
86
+ if : matrix.arch != 's390x'
90
87
uses : reproducible-containers/buildkit-cache-dance@v3.1.2
91
88
with :
92
89
cache-map : |
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ jobs:
132
132
uses : actions/cache@v4
133
133
with :
134
134
path : ${{ github.workspace }}/.ccache
135
- key : ccache-${{ matrix.arch }}-${{ format('YYYY-MM-DDTHH:mm:ssZ', github.event.head_commit.timestamp) }}
135
+ key : ccache-${{ matrix.arch }}-${{ github.event.head_commit.timestamp }}
136
136
restore-keys : |
137
137
ccache-${{ matrix.arch }}-
138
138
You can’t perform that action at this time.
0 commit comments