-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
111 lines (111 loc) · 4.24 KB
/
config.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>true</disabled>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<triggers class="vector"/>
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.tasks.Shell>
<command>if [ -f $WORKSPACE/.rvmrc ]; then source $WORKSPACE/.rvmrc; else rvm use default; fi; bundle install; mkdir -p features/reports</command>
</hudson.tasks.Shell>
<hudson.plugins.rake.Rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeFile></rakeFile>
<rakeLibDir></rakeLibDir>
<rakeWorkingDir></rakeWorkingDir>
<tasks>db:migrate db:test:prepare</tasks>
<silent>false</silent>
</hudson.plugins.rake.Rake>
<hudson.plugins.rake.Rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeFile></rakeFile>
<rakeLibDir></rakeLibDir>
<rakeWorkingDir></rakeWorkingDir>
<tasks>ci:setup:rspec spec:rcov</tasks>
<silent>false</silent>
</hudson.plugins.rake.Rake>
<hudson.plugins.rake.Rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeFile></rakeFile>
<rakeLibDir></rakeLibDir>
<rakeWorkingDir></rakeWorkingDir>
<tasks>CUCUMBER_OPTS="--format html --out features/reports/features.html" cucumber</tasks>
<silent>false</silent>
</hudson.plugins.rake.Rake>
<hudson.tasks.Shell>
<command>metrical</command>
</hudson.tasks.Shell>
</builders>
<publishers>
<hudson.tasks.junit.JUnitResultArchiver>
<testResults>spec/reports/*.xml</testResults>
<keepLongStdio>false</keepLongStdio>
<testDataPublishers/>
</hudson.tasks.junit.JUnitResultArchiver>
<htmlpublisher.HtmlPublisher>
<reportTargets>
<htmlpublisher.HtmlPublisherTarget>
<reportName>Metrics Fu</reportName>
<reportDir>tmp/metric_fu/output</reportDir>
<reportFiles>index.html</reportFiles>
<keepAll>true</keepAll>
<wrapperName>htmlpublisher-wrapper.html</wrapperName>
</htmlpublisher.HtmlPublisherTarget>
<htmlpublisher.HtmlPublisherTarget>
<reportName>Cucumber Features</reportName>
<reportDir>features/reports</reportDir>
<reportFiles>features.html</reportFiles>
<keepAll>true</keepAll>
<wrapperName>htmlpublisher-wrapper.html</wrapperName>
</htmlpublisher.HtmlPublisherTarget>
</reportTargets>
</htmlpublisher.HtmlPublisher>
<hudson.plugins.rubyMetrics.rcov.RcovPublisher>
<reportDir>coverage</reportDir>
<targets>
<hudson.plugins.rubyMetrics.rcov.model.MetricTarget>
<metric>TOTAL_COVERAGE</metric>
<healthy>80</healthy>
<unhealthy>0</unhealthy>
<unstable>0</unstable>
</hudson.plugins.rubyMetrics.rcov.model.MetricTarget>
<hudson.plugins.rubyMetrics.rcov.model.MetricTarget>
<metric>CODE_COVERAGE</metric>
<healthy>80</healthy>
<unhealthy>0</unhealthy>
<unstable>0</unstable>
</hudson.plugins.rubyMetrics.rcov.model.MetricTarget>
</targets>
</hudson.plugins.rubyMetrics.rcov.RcovPublisher>
<hudson.plugins.rubyMetrics.railsStats.RailsStatsPublisher>
<rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeWorkingDir></rakeWorkingDir>
<tasks>stats</tasks>
<silent>true</silent>
</rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeWorkingDir></rakeWorkingDir>
<task>stats</task>
</hudson.plugins.rubyMetrics.railsStats.RailsStatsPublisher>
<hudson.plugins.rubyMetrics.railsNotes.RailsNotesPublisher>
<rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeWorkingDir></rakeWorkingDir>
<tasks>notes</tasks>
<silent>true</silent>
</rake>
<rakeInstallation>(Default)</rakeInstallation>
<rakeWorkingDir></rakeWorkingDir>
<task>notes</task>
</hudson.plugins.rubyMetrics.railsNotes.RailsNotesPublisher>
</publishers>
<buildWrappers/>
</project>