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)
This commit is contained in:
Tim Düsterhus 2024-05-07 20:53:55 +02:00
commit b80faeb8cb
No known key found for this signature in database
GPG key ID: 8FF75566094168AF
2 changed files with 4 additions and 0 deletions

View file

@ -824,6 +824,7 @@ jobs:
with: with:
key: "${{github.job}}-${{hashFiles('php/main/php_version.h')}}" key: "${{github.job}}-${{hashFiles('php/main/php_version.h')}}"
append-timestamp: false append-timestamp: false
save: ${{ github.event_name != 'pull_request' }}
- name: build PHP - name: build PHP
run: | run: |
cd php cd php

View file

@ -116,6 +116,7 @@ jobs:
# job id, not the job name) # job id, not the job name)
key: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}-${{hashFiles('main/php_version.h')}}" key: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}-${{hashFiles('main/php_version.h')}}"
append-timestamp: false append-timestamp: false
save: ${{ github.event_name != 'pull_request' }}
- name: ./configure - name: ./configure
uses: ./.github/actions/configure-x64 uses: ./.github/actions/configure-x64
with: with:
@ -170,6 +171,7 @@ jobs:
with: with:
key: "${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}" key: "${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}"
append-timestamp: false append-timestamp: false
save: ${{ github.event_name != 'pull_request' }}
- name: ./configure - name: ./configure
uses: ./.github/actions/configure-macos uses: ./.github/actions/configure-macos
with: with:
@ -246,6 +248,7 @@ jobs:
with: with:
key: "${{github.job}}-${{hashFiles('main/php_version.h')}}" key: "${{github.job}}-${{hashFiles('main/php_version.h')}}"
append-timestamp: false append-timestamp: false
save: ${{ github.event_name != 'pull_request' }}
- name: ./configure - name: ./configure
run: | run: |
set -x set -x