mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-01 04:30:16 +02:00
Add some output to test runner script
This commit is contained in:
@@ -2,15 +2,16 @@
|
|||||||
|
|
||||||
cd /opt/php
|
cd /opt/php
|
||||||
|
|
||||||
|
echo "Installing composer..."
|
||||||
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||||
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
|
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
|
||||||
php composer-setup.php
|
php composer-setup.php
|
||||||
php -r "unlink('composer-setup.php');"
|
php -r "unlink('composer-setup.php');"
|
||||||
|
|
||||||
|
echo "Downloading dependencies using composer..."
|
||||||
php composer.phar install --prefer-dist --no-interaction
|
php composer.phar install --prefer-dist --no-interaction
|
||||||
|
|
||||||
ls -la ./vendor/bin
|
echo "Running tests..."
|
||||||
|
|
||||||
if ./vendor/bin/phpunit; then
|
if ./vendor/bin/phpunit; then
|
||||||
echo "Tests passed successfully!"
|
echo "Tests passed successfully!"
|
||||||
exit 0
|
exit 0
|
||||||
|
Reference in New Issue
Block a user