mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
9bd6289ce5
Signed-off-by: azjezz <azjezz@protonmail.com>
50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
|
PSALM="$(readlink -f "$SCRIPT_DIR/../psalm")"
|
|
PSALM_PHAR="$(readlink -f "$SCRIPT_DIR/../build/psalm.phar")"
|
|
|
|
cd /tmp/
|
|
rm -Rf testing-with-real-projects
|
|
mkdir -p testing-with-real-projects
|
|
cd testing-with-real-projects
|
|
|
|
case $1 in
|
|
phpunit)
|
|
git clone --depth=1 git@github.com:psalm/endtoend-test-phpunit
|
|
cd endtoend-test-phpunit
|
|
composer install
|
|
"$PSALM_PHAR" --config=.psalm/config.xml --monochrome --show-info=false
|
|
"$PSALM_PHAR" --config=.psalm/static-analysis.xml --monochrome
|
|
;;
|
|
|
|
collections)
|
|
git clone --depth=1 git@github.com:muglug/collections.git
|
|
cd collections
|
|
composer install
|
|
"$PSALM" --monochrome --show-info=false
|
|
;;
|
|
|
|
psl)
|
|
git clone git@github.com:psalm/endtoend-test-psl.git
|
|
cd endtoend-test-psl
|
|
git checkout 1.9.x
|
|
composer require --dev php-standard-library/psalm-plugin --ignore-platform-reqs
|
|
cd tools/phpbench && composer install --ignore-platform-reqs && cd ../..
|
|
"$PSALM" --monochrome --config=tools/psalm/psalm.xml
|
|
;;
|
|
|
|
laravel)
|
|
git clone --depth=1 git@github.com:muglug/framework.git
|
|
cd framework
|
|
composer install
|
|
"$PSALM" --monochrome
|
|
;;
|
|
*)
|
|
echo "Usage: test-with-real-projects.sh {phpunit|collections|proxymanager|laravel|psl}"
|
|
exit 1
|
|
esac
|