-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-artifacts.xml
25 lines (23 loc) · 997 Bytes
/
build-artifacts.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="boost-artifacts" default="ignore" basedir=".">
<import file="build-init.xml"/>
<fileset id="artifacts" dir="${artifacts.template.dir}">
<include name="index.html"/>
<include name="show.html"/>
<include name="*.css"/>
</fileset>
<target name="artifacts">
<copy todir="${artifacts.dir}">
<fileset refid="artifacts"/>
</copy>
<property name="artifacts.template.file" value="artifacts.html"/>
<property name="artifacts.file" value="artifacts.html"/>
<copy file="${artifacts.template.dir}/${artifacts.template.file}" tofile="${artifacts.dir}/${artifacts.file}">
<filterset>
<filter token="BUILD_DATE" value="${build.date}"/>
<filter token="BUILD_LABEL" value="${label}"/>
<filter token="coverage.type" value="${coverage.type}"/>
</filterset>
</copy>
</target>
</project>