mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 01:57:13 +00:00
* Updated to latest aws-crt-ffi, updated EventLoopGroup/options init * Removed test-ci target, just use test for everything now * Added event_loop_group API to CRT/stubs * Removed headers (all generated) from format-check * Added the ability to force extension vs FFI * make test will now trigger composer run test/phpunit, and force tests with both FFI and extension * Updated builder version, removed redundant php7 test run * Removed type annotations that anger php5, limited backends on php5
38 lines
762 B
JSON
38 lines
762 B
JSON
{
|
|
"name": "aws-crt-php",
|
|
"hosts": {
|
|
"ubuntu": {
|
|
"pkg_setup": [
|
|
"add-apt-repository -y ppa:ondrej/php"
|
|
],
|
|
"packages": [
|
|
"autotools-dev",
|
|
"autoconf",
|
|
"libtool",
|
|
"clang",
|
|
"php5.6-dev"
|
|
]
|
|
},
|
|
"al2": {
|
|
"packages": [
|
|
"autoconf",
|
|
"automake",
|
|
"libtool",
|
|
"clang",
|
|
"php-devel"
|
|
]
|
|
}
|
|
},
|
|
"build_steps": [
|
|
["phpize"],
|
|
["./configure"],
|
|
["make"]
|
|
],
|
|
"test_env": {
|
|
"NO_INTERACTION": "1"
|
|
},
|
|
"test_steps": [
|
|
["make", "test"]
|
|
]
|
|
}
|