handle opcache as zend_extension
[m6w6/pecl-ci] / Makefile
index 4a903a800030c45581df06f9fd58e99cff648477..411aaeaac18116c07622ed93d5d045978aa6f28c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,26 +1,23 @@
 export
 
-PHP ?= 7.4
+PHP ?= 8.0
 JOBS ?= 2
 PHP_MIRROR ?= https://php.net/distributions/
 TMPDIR ?= /tmp
 
-makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
+mkfile := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
+makdir := $(dir $(mkfile))
 
-ifdef TRAVIS
-prefix ?= $(HOME)/cache/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -)
-else
-prefix ?= $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -)
+ifeq (,$(findstring printenv,$(MAKECMDGOALS)))
+mkargs := $(shell $(MAKE) -f $(mkfile) printenv | sed -n -e '/=no$$/ d; s/=yes$$//' -e 's,with_,,gp' -e 's,enable_,,gp' | tr -c '[a-zA-Z_]' -)
 endif
+
+prefix ?= $(TMPDIR)/php-$(PHP)-$(mkargs)
 exec_prefix ?= $(prefix)
 bindir = $(exec_prefix)/bin
 srcdir = $(prefix)/src
-ifdef TRAVIS_BUILD_DIR
-curdir ?= $(TRAVIS_BUILD_DIR)
-else
 # CURDIR is a make builtin
 curdir ?= $(CURDIR)
-endif
 
 enable_maintainer_zts ?= no
 enable_debug ?= no
@@ -56,6 +53,12 @@ CPPCHECK_ARGS ?= -v -j $(JOBS) --std=$(CPPCHECK_STD) --enable=$(CPPCHECK_ENABLE)
 .PHONY: all
 all: php
 
+.PHONY: printenv
+printenv:
+       @env | grep -E 'prefix=|dir=' | grep -v config_file_scan_dir | sort
+       @env | grep -E '^PHP|^PECL' | sort
+       @env | grep -E '^with_|^enable_' | grep -Ev 'php_config|config_file_scan_dir' | sort
+
 .PHONY: versions
 versions: $(PHP_RELEASES)
        grep "^$(PHP)" $< | cut -f1-2
@@ -88,7 +91,11 @@ php: check $(bindir)/php | $(PECL_INI)
        -for EXT_SONAME in $(extdir)/*.so; do \
                EXT_SONAME=$$(basename $$EXT_SONAME); \
                if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \
-                       echo extension=$$EXT_SONAME >> $(PECL_INI); \
+                       if test "$$EXT_SONAME" = "opcache.so"; then \
+                               echo zend_extension=$$EXT_SONAME >> $(PECL_INI); \
+                       else \
+                               echo extension=$$EXT_SONAME >> $(PECL_INI); \
+                       fi; \
                fi \
        done
 
@@ -112,7 +119,6 @@ $(srcdir) $(extdir) $(with_config_file_scan_dir):
 .PHONY: pecl-check
 pecl-check:
        @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi
-       if test -d $(PECL_DIR)/.git; then cd $(PECL_DIR)/; git pull; fi
 
 .PHONY: pecl-clean
 pecl-clean:
@@ -173,7 +179,7 @@ test: php
 pecl-test: TESTS ?= $(PECL_DIR)/tests
 pecl-test: php
        REPORT_EXIT_STATUS=1 $(bindir)/php $(prefix)/lib/php/build/run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff $(TESTS)
-       
+
 pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
        for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done