Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/php-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -980,18 +980,21 @@ jobs:
for platform in $PLATFORM_LIST; do
SUMMARY_FILE="all-results/test-results-${version}-${platform}/summary-${platform}.md"

# URL encode the platform name for shields.io (replace hyphens with underscores)
BADGE_PLATFORM=$(echo "$platform" | sed 's/-/_/g')

if [ -f "$SUMMARY_FILE" ]; then
# Check if tests passed by looking for "ALL TESTS PASSED" in summary
if grep -q "ALL TESTS PASSED" "$SUMMARY_FILE"; then
# Success badge (green)
echo "![${platform}](https://img.shields.io/badge/${platform}-PASS-success?style=flat-square&logo=php&logoColor=white)" >> comment.md
echo "![${platform}](https://img.shields.io/badge/${BADGE_PLATFORM}-PASS-brightgreen?style=flat-square&logo=php&logoColor=white)" >> comment.md
else
# Failure badge (red)
echo "![${platform}](https://img.shields.io/badge/${platform}-FAIL-critical?style=flat-square&logo=php&logoColor=white)" >> comment.md
echo "![${platform}](https://img.shields.io/badge/${BADGE_PLATFORM}-FAIL-red?style=flat-square&logo=php&logoColor=white)" >> comment.md
fi
else
# No results badge (gray)
echo "![${platform}](https://img.shields.io/badge/${platform}-NO_RESULTS-inactive?style=flat-square&logo=php&logoColor=white)" >> comment.md
echo "![${platform}](https://img.shields.io/badge/${BADGE_PLATFORM}-NO%20RESULTS-lightgrey?style=flat-square&logo=php&logoColor=white)" >> comment.md
fi
done

Expand Down
7 changes: 7 additions & 0 deletions bin/php8.5.2/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,13 @@ extension=sodium

;zend_extension=opcache

[opcache]
; Determines if Zend OPCache is enabled
opcache.enable = 0

; Determines if Zend OPCache is enabled for the CLI version of PHP
opcache.enable_cli = 0

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bundle.name = php
bundle.release = 2026.1.16
bundle.release = 2026.1.30
bundle.type = bins
bundle.format = 7z

Expand Down