Skip to content

Commit b80faeb

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: CI: Do not save the ccache for PRs (8.3+) CI: Do not save the ccache for PRs (#14168)
2 parents 90a5b87 + 402f3a9 commit b80faeb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,7 @@ jobs:
824824
with:
825825
key: "${{github.job}}-${{hashFiles('php/main/php_version.h')}}"
826826
append-timestamp: false
827+
save: ${{ github.event_name != 'pull_request' }}
827828
- name: build PHP
828829
run: |
829830
cd php

.github/workflows/push.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ jobs:
116116
# job id, not the job name)
117117
key: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}-${{hashFiles('main/php_version.h')}}"
118118
append-timestamp: false
119+
save: ${{ github.event_name != 'pull_request' }}
119120
- name: ./configure
120121
uses: ./.github/actions/configure-x64
121122
with:
@@ -170,6 +171,7 @@ jobs:
170171
with:
171172
key: "${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}"
172173
append-timestamp: false
174+
save: ${{ github.event_name != 'pull_request' }}
173175
- name: ./configure
174176
uses: ./.github/actions/configure-macos
175177
with:
@@ -246,6 +248,7 @@ jobs:
246248
with:
247249
key: "${{github.job}}-${{hashFiles('main/php_version.h')}}"
248250
append-timestamp: false
251+
save: ${{ github.event_name != 'pull_request' }}
249252
- name: ./configure
250253
run: |
251254
set -x

0 commit comments

Comments
 (0)