Skip to content

Commit 8b0f0b3

Browse files
committed
Merge branch 'php/8.2' into php/8.3
2 parents 7a3b5b6 + 6f619bf commit 8b0f0b3

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
tar -czf ./PHP-Linux-x86_64-PM${{ matrix.pm-version-major }}-debugging-symbols.tar.gz bin-debug
4949
5050
- name: Upload artifacts
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
if: always()
5353
with:
5454
name: Linux-PM${{ matrix.pm-version-major }}
@@ -63,7 +63,7 @@ jobs:
6363
run: tar -czf workspace.tar.gz install_data
6464

6565
- name: Upload workspace
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
if: failure()
6868
with:
6969
name: Linux-workspace-PM${{ matrix.pm-version-major }}
@@ -105,7 +105,7 @@ jobs:
105105
tar -czf ./PHP-MacOS-x86_64-PM${{ matrix.pm-version-major }}-debugging-symbols.tar.gz bin-debug
106106
107107
- name: Upload artifacts
108-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
109109
if: always()
110110
with:
111111
name: MacOS-PM${{ matrix.pm-version-major }}
@@ -120,7 +120,7 @@ jobs:
120120
run: tar -czf workspace.tar.gz install_data
121121

122122
- name: Upload workspace
123-
uses: actions/upload-artifact@v3
123+
uses: actions/upload-artifact@v4
124124
if: failure()
125125
with:
126126
name: MacOS-workspace-PM${{ matrix.pm-version-major }}
@@ -156,7 +156,7 @@ jobs:
156156
move temp\*.zip .
157157
158158
- name: Upload artifacts
159-
uses: actions/upload-artifact@v3
159+
uses: actions/upload-artifact@v4
160160
if: always()
161161
with:
162162
name: Windows-PM${{ matrix.pm-version-major }}
@@ -186,7 +186,7 @@ jobs:
186186
git push -f origin php-${{ steps.version.outputs.PHP_VERSION }}-latest
187187
188188
- name: Download artifacts
189-
uses: actions/download-artifact@v3
189+
uses: actions/download-artifact@v4
190190
with:
191191
path: ${{ github.workspace }}
192192

compile.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,9 @@ function build_curl {
633633
download_github_src "curl/curl" "$CURL_VERSION" "curl" | tar -zx >> "$DIR/install.log" 2>&1
634634
write_configure
635635
cd "$curl_dir"
636+
if [[ "$(uname -s)" == "Darwin" ]]; then
637+
sed -i'.bak' 's/^CURL_CONVERT_INCLUDE_TO_ISYSTEM//' ./configure.ac
638+
fi
636639
./buildconf --force >> "$DIR/install.log" 2>&1
637640
RANLIB=$RANLIB ./configure --disable-dependency-tracking \
638641
--enable-ipv6 \

0 commit comments

Comments
 (0)