Skip to content

Commit

Permalink
Merge branch 'php/8.2' into php/8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Jan 5, 2024
2 parents 7a3b5b6 + 6f619bf commit 8b0f0b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
tar -czf ./PHP-Linux-x86_64-PM${{ matrix.pm-version-major }}-debugging-symbols.tar.gz bin-debug
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: Linux-PM${{ matrix.pm-version-major }}
Expand All @@ -63,7 +63,7 @@ jobs:
run: tar -czf workspace.tar.gz install_data

- name: Upload workspace
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: Linux-workspace-PM${{ matrix.pm-version-major }}
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
tar -czf ./PHP-MacOS-x86_64-PM${{ matrix.pm-version-major }}-debugging-symbols.tar.gz bin-debug
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: MacOS-PM${{ matrix.pm-version-major }}
Expand All @@ -120,7 +120,7 @@ jobs:
run: tar -czf workspace.tar.gz install_data

- name: Upload workspace
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: MacOS-workspace-PM${{ matrix.pm-version-major }}
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
move temp\*.zip .
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: Windows-PM${{ matrix.pm-version-major }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
git push -f origin php-${{ steps.version.outputs.PHP_VERSION }}-latest
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ${{ github.workspace }}

Expand Down
3 changes: 3 additions & 0 deletions compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,9 @@ function build_curl {
download_github_src "curl/curl" "$CURL_VERSION" "curl" | tar -zx >> "$DIR/install.log" 2>&1
write_configure
cd "$curl_dir"
if [[ "$(uname -s)" == "Darwin" ]]; then
sed -i'.bak' 's/^CURL_CONVERT_INCLUDE_TO_ISYSTEM//' ./configure.ac
fi
./buildconf --force >> "$DIR/install.log" 2>&1
RANLIB=$RANLIB ./configure --disable-dependency-tracking \
--enable-ipv6 \
Expand Down

0 comments on commit 8b0f0b3

Please sign in to comment.