Removed FFI support (#45)

* Removed FFI support

* run_tests and ci-test.sh should never have differed. Fixing now

* run_tests can now update composer
This commit is contained in:
Justin Boswell
2021-08-17 19:06:14 -07:00
committed by GitHub
parent fb4814c4e1
commit 0af673491a
11 changed files with 18 additions and 152 deletions
+3 -3
View File
@@ -12,8 +12,8 @@ CMAKE_BUILD = $(CMAKE) --build
CMAKE_BUILD_TYPE ?= RelWithDebInfo
CMAKE_TARGET = --config $(CMAKE_BUILD_TYPE) --target install
all: extension ffi
.PHONY: all extension ffi
all: extension
.PHONY: all extension
# configure for static aws-crt-ffi.a
build/aws-crt-ffi-static/CMakeCache.txt:
@@ -51,7 +51,7 @@ vendor/bin/phpunit:
composer update
test-extension: vendor/bin/phpunit extension
AWS_CRT_PHP_EXTENSION=1 composer run test-extension
composer run test-extension
# Use PHPUnit to run tests
test: test-extension