-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support build with disabled zend signals (#2886)
I seem to have taken care about the globals, but missed zend_signal_handler_unblock. Signed-off-by: Bob Weinand <bob.weinand@datadoghq.com>
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
dockerfiles/verify_packages/installer/test_alpine_zts_no_zend_signals.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
. "$(dirname ${0})/utils.sh" | ||
|
||
apk add libgcc | ||
|
||
# Initially no ddtrace | ||
assert_no_ddtrace | ||
|
||
# Install using the php installer | ||
version=$(cat VERSION) | ||
php ./build/packages/datadog-setup.php --enable-profiling --php-bin php | ||
assert_ddtrace_version "${version}" | ||
assert_profiler_version "${version}" | ||
assert_appsec_version "${version}" | ||
|
||
assert_sources_path_exists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters