This commit is contained in:
Daniil Gentili 2023-10-23 22:37:56 +02:00
parent af461a3690
commit 667be01cc2
5 changed files with 15 additions and 7 deletions

View File

@ -30,7 +30,7 @@ RUN true \
systemtap-sdt-dev libssl-dev \
libpcre2-dev libargon2-dev libedit-dev libsodium-dev llvm-16 libonig-dev \
\
&& git clone --depth 1 https://github.com/php/php-src && cd php-src \
&& git clone --depth 1 https://github.com/php/php-src -b PHP-8.1 && cd php-src \
\
&& ./buildconf \
&& ./configure --prefix=/usr \

View File

@ -8,9 +8,8 @@ cd /tmp
rm -rf infection
git clone https://github.com/infection/infection
git clone https://github.com/infection/infection -b 0.27.4
cd infection
git checkout fe7cbe78e5838608df42ec7688d353ef1d631fee
composer i --ignore-platform-reqs

View File

@ -8,6 +8,10 @@ git clone https://github.com/vimeo/psalm
cd psalm
git checkout 7428e49b115a2a837aa29cf0fafd0ca902fe2457
git branch -D master || true
git branch master
git checkout master
export PSALM_ALLOW_XDEBUG=1
composer i --ignore-platform-reqs

View File

@ -2,12 +2,16 @@
cd /tmp
rm -rf psalm
rm -rf psalm_3
git clone https://github.com/nicelocal/psalm -b rector_pass --depth 1
cd psalm
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
composer i --ignore-platform-reqs

3
run.sh
View File

@ -3,5 +3,6 @@
docker build . -t asan_tests
for f in bugs/*sh; do
$f || echo "!!! $f failed !!!"
echo "!!! About to run $f !!!"
$f || echo "!!! Failed to run $f !!!"
done