mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-02 05:51:20 +00:00
23 lines
739 B
XML
23 lines
739 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project name="wallabag" default="build">
|
||
|
<target name="build" depends="prepare"/>
|
||
|
|
||
|
<target name="clean" description="Cleanup build artifacts">
|
||
|
<delete dir="${basedir}/app/cache"/>
|
||
|
</target>
|
||
|
|
||
|
<target name="prepare" depends="clean" description="Prepare for build">
|
||
|
<exec executable="composer">
|
||
|
<arg value="install"/>
|
||
|
<arg value="--dev"/>
|
||
|
<arg value="--no-interaction"/>
|
||
|
<arg value="--working-dir=.."/>
|
||
|
</exec>
|
||
|
<exec executable="php">
|
||
|
<arg value="${basedir}/../app/console"/>
|
||
|
<arg value="cache:clear"/>
|
||
|
<arg value="--env=test"/>
|
||
|
</exec>
|
||
|
</target>
|
||
|
</project>
|