File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 99 new Bundle ('boost.context ' , ['Zend/asm ' ]),
1010 new Bundle ('XSSE ' , ['Zend/zend_simd.h ' ]),
1111 new Bundle ('timelib ' , ['ext/date/lib ' ]),
12+ new Bundle ('xxHash ' , ['ext/hash/xxhash ' ]),
1213 new Bundle ('Unicode Character Database ' , ['ext/mbstring ' ]),
1314 new Bundle ('PCRE2 ' , ['ext/pcre/pcre2lib ' ]),
1415 new Bundle ('uriparser ' , ['ext/uri/uriparser ' ]),
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ set -ex
3+ cd " $( dirname " $0 " ) /../../.."
4+
5+ tmp_dir=/tmp/php-src-download-bundled/xxhash
6+ rm -rf " $tmp_dir "
7+
8+ revision=refs/tags/v0.8.2
9+
10+ git clone --depth 1 --revision=" $revision " https://github.com/Cyan4973/xxHash.git " $tmp_dir "
11+
12+ cp -f " $tmp_dir " /xxhash.h ext/hash/xxhash/xxhash.h
Original file line number Diff line number Diff line change 77 - ' Zend/asm/**'
88 - ' Zend/zend_simd.h'
99 - ' ext/date/lib/**'
10+ - ' ext/hash/xxhash/**'
1011 - ' ext/mbstring/**'
1112 - ' ext/pcre/pcre2lib/**'
1213 - ' ext/uri/uriparser/**'
4344 timelib:
4445 - '.github/scripts/download-bundled/timelib.*'
4546 - 'ext/date/lib/**'
47+ xxhash:
48+ - '.github/scripts/download-bundled/xxhash.*'
49+ - 'ext/hash/xxhash/**'
4650 'unicode-character-database':
4751 - '.github/scripts/download-bundled/unicode-character-database.*'
4852 - 'ext/mbstring/**'
8084 echo "::group::Verify files"
8185 .github/scripts/test-directory-unchanged.sh 'ext/date/lib'
8286 echo "::endgroup::"
87+ - name : xxHash
88+ if : ${{ !cancelled() && (steps.changes.outputs.xxhash == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
89+ run : |
90+ echo "::group::Download"
91+ .github/scripts/download-bundled/xxhash.sh
92+ echo "::endgroup::"
93+ echo "::group::Verify files"
94+ .github/scripts/test-directory-unchanged.sh 'ext/hash/xxhash'
95+ echo "::endgroup::"
8396 - name : ' Unicode Character Database'
8497 if : ${{ !cancelled() && (steps.changes.outputs.unicode-character-database == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') }}
8598 run : |
You can’t perform that action at this time.
0 commit comments