Skip to content

Commit d391c8e

Browse files
committed
Cleanup build
1 parent a4fca58 commit d391c8e

File tree

3 files changed

+0
-71
lines changed

3 files changed

+0
-71
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ jobs:
227227
operating-system: [ubuntu-latest, windows-latest]
228228
script:
229229
- "vendor/bin/phing phpstan"
230-
- "vendor/bin/phing phpstan-runtime-reflection"
231230
- "vendor/bin/phing phpstan-static-reflection"
232231
exclude:
233232
- operating-system: windows-latest

build.xml

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -315,68 +315,6 @@
315315
</exec>
316316
</target>
317317

318-
<target name="phpstan-runtime-reflection">
319-
<property name="phpstan.config" value="build/phpstan-generated.neon"/>
320-
<touch file="${phpstan.config}"/>
321-
<append
322-
destFile="${phpstan.config}"
323-
text="includes: [ phpstan.runtime-reflection.neon"
324-
append="false"
325-
></append>
326-
<if>
327-
<equals arg1="${isPHP74}" arg2="true" />
328-
<then>
329-
<append
330-
destFile="${phpstan.config}"
331-
text=", ignore-gte-php7.4-errors.neon"
332-
></append>
333-
</then>
334-
</if>
335-
<if>
336-
<os family="windows"/>
337-
<then>
338-
<append
339-
destFile="${phpstan.config}"
340-
text=", ignore-windows-runtime.neon"
341-
></append>
342-
</then>
343-
</if>
344-
<append
345-
destFile="${phpstan.config}"
346-
text=" ]"
347-
></append>
348-
<exec
349-
executable="php"
350-
logoutput="true"
351-
passthru="true"
352-
checkreturn="true"
353-
>
354-
<arg path="bin/phpstan"/>
355-
<arg value="clear-result-cache"/>
356-
<arg value="-c"/>
357-
<arg path="${phpstan.config}"/>
358-
<arg value="-q"/>
359-
</exec>
360-
<exec
361-
executable="php"
362-
logoutput="true"
363-
passthru="true"
364-
checkreturn="true"
365-
>
366-
<arg value="-d"/>
367-
<arg value="memory_limit=512M"/>
368-
<arg path="bin/phpstan"/>
369-
<arg value="analyse"/>
370-
<arg value="-c"/>
371-
<arg path="${phpstan.config}"/>
372-
<arg value="-l"/>
373-
<arg value="8"/>
374-
<arg path="build/PHPStan"/>
375-
<arg path="src"/>
376-
<arg path="tests"/>
377-
</exec>
378-
</target>
379-
380318
<target name="phpstan-static-reflection">
381319
<property name="phpstan.config" value="build/phpstan-generated.neon"/>
382320
<touch file="${phpstan.config}"/>

build/phpstan.runtime-reflection.neon

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)