Skip to content

Commit 258d5c1

Browse files
committed
Add ccache and disable -werror
1 parent 169b2d0 commit 258d5c1

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/actions/configure-macos/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ runs:
6767
--with-mhash \
6868
--with-sodium \
6969
--enable-dba \
70-
--enable-werror \
7170
--with-config-file-path=/etc \
7271
--with-config-file-scan-dir=/etc/php.d \
7372
${{ inputs.configurationParameters }}

.github/workflows/push.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ jobs:
4848
uses: actions/checkout@v4
4949
- name: brew
5050
uses: ./.github/actions/brew
51+
- name: ccache
52+
uses: hendrikmuhs/ccache-action@v1.2
53+
with:
54+
key: "${{github.job}}-${{hashFiles('main/php_version.h')}}"
55+
append-timestamp: false
5156
- name: ./configure
5257
uses: ./.github/actions/configure-macos
5358
with:
@@ -81,6 +86,11 @@ jobs:
8186
uses: actions/checkout@v4
8287
- name: brew
8388
uses: ./.github/actions/brew
89+
- name: ccache
90+
uses: hendrikmuhs/ccache-action@v1.2
91+
with:
92+
key: "${{github.job}}-${{hashFiles('main/php_version.h')}}"
93+
append-timestamp: false
8494
- name: ./configure
8595
uses: ./.github/actions/configure-macos
8696
with:

0 commit comments

Comments
 (0)