jit_bugs/bugs/2_psalm_new.sh
2023-11-11 19:04:35 +01:00

38 lines
810 B
Bash
Executable File

#!/bin/bash -e
standalone=$PWD/bugs/wrap.php
cd /tmp
rm -rf psalm_3
git clone https://github.com/nicelocal/psalm -b rector_pass --depth 1 psalm_3
cd psalm_3
git checkout 9d3fee47afa90f3eb53043a26f01e587d2dd34e5
git branch -D master || true
git branch master
git checkout master
export PSALM_ALLOW_XDEBUG=1
cp $standalone .
composer i --ignore-platform-reqs
sed 's:findUnusedCode=:cacheDirectory="/tmp/psalm" findUnusedCode=:g' -i psalm.xml.dist
echo "About to run psalm"
sleep 3
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php --repeat 2 -f /app/wrap.php /app/psalm --no-cache
echo "About to run composer"
rm -rf vendor
docker run -v $PWD:/app --rm --privileged -it asan_tests /usr/bin/php /app/wrap.php /usr/bin/composer update --ignore-platform-reqs
echo "OK, no bugs!"