-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
61 lines (54 loc) · 2.33 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<project name="BackupPC-Clone" default="build" basedir=".">
<taskdef name="ReadSemanticVersion" classname="vendor.setbased.phing-extensions.src.Task.ReadSemanticVersionTask"/>
<property name="BUILD_DIR" value="./build"/>
<!-- Run composer update and executes various other updates -->
<target name="composer-update">
<exec command="composer update" checkreturn="true" passthru="true"/>
</target>
<!-- Creates a new version/release. -->
<target name="version">
<readSemanticVersion file=".version"
versionProperty="VERSION"
haltOnError="true"/>
<reflexive>
<fileset dir=".">
<include name="setup.py"/>
</fileset>
<filterchain>
<replaceregexp>
<regexp pattern="version=.*" replace="version='${VERSION}',"/>
</replaceregexp>
</filterchain>
</reflexive>
<reflexive>
<fileset dir=".">
<include name="backuppc_clone/application/*.py"/>
</fileset>
<filterchain>
<replaceregexp>
<regexp pattern="Application.__init__\(self, '([A-Za-z0-9\-]*)', .*"
replace="Application.__init__(self, '$1', '${VERSION}')"/>
</replaceregexp>
</filterchain>
</reflexive>
<gitcommit repository="." message="Release: ${VERSION}" allFiles="true"/>
<gitpush repository="."/>
<gittag repository="." name="${VERSION}"/>
<gitpush repository="." refspec="${VERSION}" quiet="false"/>
</target>
<!-- Creates a new distribution using setup.py -->
<target name="dist">
<exec command="python3 setup.py sdist" passthru="true" checkreturn="true"/>
</target>
<!-- Uploads a distribution to PyPI -->
<target name="upload">
<loadfile property="VERSION" file=".version"/>
<exec command="twine upload dist/BackupPC-Clone-${VERSION}.tar.gz" passthru="true" checkreturn="true"/>
</target>
<!-- All steps for releasing a new version -->
<target name="new-version" depends="version,dist,upload"/>
<!-- Default target -->
<target name="build">
<echo msg="And Now for Something Completely Different"/>
</target>
</project>