Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #91 from tideways/PHP7.4
Browse files Browse the repository at this point in the history
Add packaging for PHP 7.4
  • Loading branch information
beberlei authored Nov 14, 2019
2 parents fc9da2e + 9caa610 commit 97c780d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/package_extension.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BASEDIR=`dirname $BASEDIR`
PACKAGENAME="tideways-xhprof"
DESCRIPTION="tideways-xhprof is a modern XHProf fork built for PHP 7."
EXTENSION="tideways_xhprof"
VERSIONS=( "7.0" "7.1" "7.2" "7.3" "7.1-zts" "7.2-zts" "7.3-zts" )
VERSIONS=( "7.0" "7.1" "7.2" "7.3" "7.4" "7.1-zts" "7.2-zts" "7.3-zts" "7.4-zts" )
PACKAGES=( "deb" "rpm" )
ARCHITECTURE=`uname -m`
ARCHITECTURE=${ARCHITECTURE/686/386}
Expand Down
14 changes: 14 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ env:
NO_INTERACTION: 1

steps:
- label: ":php: 7.4 amd64"
command: ./.buildkite/build_extension.sh 7.4
agents:
phpbuild: "no-debug"
queue: "build"
arch: "x86_64"

- label: ":php: 7.3 amd64"
command: ./.buildkite/build_extension.sh 7.3
agents:
Expand Down Expand Up @@ -30,6 +37,13 @@ steps:
queue: "build"
arch: "x86_64"

- label: ":php: 7.4-zts amd64"
command: ./.buildkite/build_extension.sh 7.4-zts
agents:
phpbuild: "no-debug"
queue: "build"
arch: "x86_64"

- label: ":php: 7.3-zts amd64"
command: ./.buildkite/build_extension.sh 7.3-zts
agents:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 5.0.2

- [#90](https://github.com/tideways/php-xhprof-extension/issues/90): Add packaging for PHP 7.4

# 5.0.1

- [#86](https://github.com/tideways/php-xhprof-extension/pull/86): Fix bug in Apple/MacOS timer code that prevented wall time measurements from working.
2 changes: 1 addition & 1 deletion php_tideways_xhprof.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
extern zend_module_entry tideways_xhprof_module_entry;
#define phpext_tideways_xhprof_ptr &tideways_xhprof_module_entry

#define PHP_TIDEWAYS_XHPROF_VERSION "5.0.1"
#define PHP_TIDEWAYS_XHPROF_VERSION "5.0.2"
#define TIDEWAYS_XHPROF_CALLGRAPH_COUNTER_SIZE 1024
#define TIDEWAYS_XHPROF_CALLGRAPH_SLOTS 8192
#define TIDEWAYS_XHPROF_CLOCK_CGT 0
Expand Down

0 comments on commit 97c780d

Please sign in to comment.