mirror of
https://github.com/danog/jit_bugs.git
synced 2024-11-26 20:15:13 +01:00
15 lines
262 B
Bash
15 lines
262 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
cd /tmp
|
||
|
|
||
|
git clone https://github.com/nicelocal/psalm -b rector_pass --depth 1
|
||
|
cd psalm
|
||
|
git checkout 9d3fee47afa90f3eb53043a26f01e587d2dd34e5
|
||
|
|
||
|
export PSALM_ALLOW_XDEBUG=1
|
||
|
|
||
|
composer i --ignore-platform-reqs
|
||
|
|
||
|
./psalm --no-cache
|
||
|
|
||
|
echo "OK, no bugs!"
|