mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added test-ffi target, use it in CI * Added clang-format config, fixed RETURN_STRING API mismatch * Skip installing php and packages on the PHP docker images * Removed al2 job that was never going to work, and compiler tests * Fixed basic test for extension loading * Cleaned up lib structure, fixed tests * use test-ci target to conditionally test in GitHub * Use v0.8.1 of builder
38 lines
765 B
JSON
38 lines
765 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-ci"]
|
|
]
|
|
}
|