forked from genehallman/s3-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleconfig.xml
49 lines (47 loc) · 1.47 KB
/
sampleconfig.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
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<triggers class="vector"/>
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.tasks.Shell>
<command>mkdir -p ./test/data/1/11
mkdir -p ./test/data/1/12
mkdir -p ./test/data/2/21
touch ./test/data/1/a.txt
touch ./test/data/1/b.txt
touch ./test/data/1/11/a.txt
touch ./test/data/1/11/b.txt
touch ./test/data/1/12/a.txt
touch ./test/data/2/21/b.txt</command>
</hudson.tasks.Shell>
</builders>
<publishers>
<jenkins.plugins.s3.S3BucketPublisher>
<profileName>lfaws</profileName>
<rules>
<jenkins.plugins.s3.PublishRule>
<workingDir>./test</workingDir>
<include>**/*</include>
<exclude></exclude>
<to>livefyre-build/gene-test</to>
</jenkins.plugins.s3.PublishRule>
<jenkins.plugins.s3.PublishRule>
<workingDir>./test</workingDir>
<include>**/*</include>
<exclude></exclude>
<to>livefyre-build/gene-test2</to>
</jenkins.plugins.s3.PublishRule>
</rules>
</jenkins.plugins.s3.S3BucketPublisher>
</publishers>
<buildWrappers/>
</project>