Skip to content

Commit 5fbbe62

Browse files
committed
--recurse-submodules
1 parent ff07fc5 commit 5fbbe62

File tree

3 files changed

+2
-24
lines changed

3 files changed

+2
-24
lines changed

.github/scripts/download-bundled/pcre2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd "$(dirname "$0")/../../.."
44

55
commit=b2bd4254b379b9d7dc9a3dda060a7e27009ccdff # 10.46 release
66

7-
git clone --revision=$commit https://github.com/PCRE2Project/pcre2.git /tmp/php-src-bundled/pcre2
7+
git clone --recurse-submodules --revision=$commit https://github.com/PCRE2Project/pcre2.git /tmp/php-src-bundled/pcre2
88

99
rm -rf ext/pcre/pcre2lib
1010
cp -R /tmp/php-src-bundled/pcre2/src ext/pcre/pcre2lib

.github/scripts/download-bundled/sljit.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/verify-bundled-files.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
base: master
2525
filters: |
2626
pcre2:
27-
- 'ext/pcre/pcre2lib/!(sljit/**)/**'
28-
sljit:
29-
- 'ext/pcre/pcre2lib/sljit/**'
27+
- 'ext/pcre/pcre2lib/**'
3028
3129
- name: PCRE2 - Download
3230
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
@@ -35,11 +33,3 @@ jobs:
3533
- name: PCRE2 - Verify files
3634
if: ${{ !cancelled() && (steps.changes.outputs.pcre2 == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
3735
run: .github/scripts/download-bundled/verify-directory-unchanged.sh ext/pcre/pcre2lib
38-
39-
- name: SLJIT - Download
40-
if: ${{ !cancelled() && (steps.changes.outputs.sljit == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
41-
run: .github/scripts/download-bundled/sljit.sh
42-
43-
- name: SLJIT - Verify files
44-
if: ${{ !cancelled() && (steps.changes.outputs.sljit == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request')) }}
45-
run: .github/scripts/download-bundled/verify-directory-unchanged.sh ext/pcre/pcre2lib/sljit

0 commit comments

Comments
 (0)