File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1414 with :
1515 release : ' 13.5'
1616 usesh : true
17- copyback : false
17+ copyback : true
1818 # Temporarily disable sqlite, as FreeBSD ships it with disabled double quotes. We'll need to fix our tests.
1919 # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269889
2020 prepare : |
2424
2525 kldload accf_http
2626 pkg install -y \
27+ ccache \
2728 autoconf \
2829 bison \
2930 gmake \
4950 curl \
5051 $OPCACHE_TLS_TESTS_DEPS
5152
53+ export CCACHE_DIR=$GITHUB_WORKSPACE/.ccache
54+ ccache --set-config=max_size=256M
55+ ccache --set-config=compression=true
56+ ccache -z
57+
5258 ./buildconf -f
53- CC=clang CXX=clang++ \
59+ CC="ccache clang" CXX="ccache clang++" \
5460 ./configure \
5561 --prefix=/usr/local \
5662 --enable-debug \
Original file line number Diff line number Diff line change @@ -407,5 +407,13 @@ jobs:
407407 steps :
408408 - name : git checkout
409409 uses : actions/checkout@v6
410+ - name : Restore ccache
411+ uses : actions/cache@v4
412+ with :
413+ path : .ccache
414+ key : " ${{github.job}}-${{hashFiles('main/php_version.h')}}-${{github.sha}}"
415+ restore-keys : |
416+ ${{github.job}}-${{hashFiles('main/php_version.h')}}-
417+ ${{github.job}}-
410418 - name : FreeBSD
411419 uses : ./.github/actions/freebsd
You can’t perform that action at this time.
0 commit comments