diff --git a/.github/workflows/php-extension-test.yml b/.github/workflows/php-extension-test.yml index d246b66..cfde586 100644 --- a/.github/workflows/php-extension-test.yml +++ b/.github/workflows/php-extension-test.yml @@ -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 diff --git a/bin/php8.5.2/php.ini b/bin/php8.5.2/php.ini index 940435d..d46b6e8 100644 --- a/bin/php8.5.2/php.ini +++ b/bin/php8.5.2/php.ini @@ -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 ; ;;;;;;;;;;;;;;;;;;; diff --git a/build.properties b/build.properties index e91a017..fb1c7a6 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = php -bundle.release = 2026.1.16 +bundle.release = 2026.1.30 bundle.type = bins bundle.format = 7z