akqa-jenkins 0.6.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +8 -0
- data/Changelog.md +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +56 -0
- data/README.md +159 -0
- data/Rakefile +82 -0
- data/bin/jenkins +11 -0
- data/cucumber.yml +8 -0
- data/features/build_details.feature +42 -0
- data/features/configure.feature +36 -0
- data/features/default_host.feature +26 -0
- data/features/development.feature +14 -0
- data/features/launch_server.feature +16 -0
- data/features/listing_jobs.feature +34 -0
- data/features/manage_jobs.feature +214 -0
- data/features/manage_slave_nodes.feature +82 -0
- data/features/step_definitions/common_steps.rb +192 -0
- data/features/step_definitions/fixture_project_steps.rb +8 -0
- data/features/step_definitions/jenkins_steps.rb +116 -0
- data/features/step_definitions/scm_steps.rb +12 -0
- data/features/support/common.rb +37 -0
- data/features/support/env.rb +19 -0
- data/features/support/hooks.rb +16 -0
- data/features/support/jenkins_helpers.rb +6 -0
- data/features/support/matchers.rb +10 -0
- data/fixtures/jenkins/envfile.hpi +0 -0
- data/fixtures/jenkins/git.hpi +0 -0
- data/fixtures/jenkins/github.hpi +0 -0
- data/fixtures/jenkins/greenballs.hpi +0 -0
- data/fixtures/jenkins/rake.hpi +0 -0
- data/fixtures/jenkins/ruby.hpi +0 -0
- data/fixtures/projects/erlang/rebar.config +1 -0
- data/fixtures/projects/non-bundler/Rakefile +4 -0
- data/fixtures/projects/rails-3/.gitignore +4 -0
- data/fixtures/projects/rails-3/Gemfile +30 -0
- data/fixtures/projects/rails-3/Gemfile.lock +74 -0
- data/fixtures/projects/rails-3/README +256 -0
- data/fixtures/projects/rails-3/Rakefile +7 -0
- data/fixtures/projects/rails-3/app/controllers/application_controller.rb +3 -0
- data/fixtures/projects/rails-3/app/helpers/application_helper.rb +2 -0
- data/fixtures/projects/rails-3/app/views/layouts/application.html.erb +14 -0
- data/fixtures/projects/rails-3/config.ru +4 -0
- data/fixtures/projects/rails-3/config/application.rb +42 -0
- data/fixtures/projects/rails-3/config/boot.rb +13 -0
- data/fixtures/projects/rails-3/config/database.yml +22 -0
- data/fixtures/projects/rails-3/config/environment.rb +5 -0
- data/fixtures/projects/rails-3/config/environments/development.rb +26 -0
- data/fixtures/projects/rails-3/config/environments/production.rb +49 -0
- data/fixtures/projects/rails-3/config/environments/test.rb +35 -0
- data/fixtures/projects/rails-3/config/initializers/backtrace_silencers.rb +7 -0
- data/fixtures/projects/rails-3/config/initializers/inflections.rb +10 -0
- data/fixtures/projects/rails-3/config/initializers/mime_types.rb +5 -0
- data/fixtures/projects/rails-3/config/initializers/secret_token.rb +7 -0
- data/fixtures/projects/rails-3/config/initializers/session_store.rb +8 -0
- data/fixtures/projects/rails-3/config/locales/en.yml +5 -0
- data/fixtures/projects/rails-3/config/routes.rb +58 -0
- data/fixtures/projects/rails-3/db/seeds.rb +7 -0
- data/fixtures/projects/rails-3/doc/README_FOR_APP +2 -0
- data/fixtures/projects/rails-3/lib/tasks/.gitkeep +0 -0
- data/fixtures/projects/rails-3/public/404.html +26 -0
- data/fixtures/projects/rails-3/public/422.html +26 -0
- data/fixtures/projects/rails-3/public/500.html +26 -0
- data/fixtures/projects/rails-3/public/favicon.ico +0 -0
- data/fixtures/projects/rails-3/public/images/rails.png +0 -0
- data/fixtures/projects/rails-3/public/index.html +239 -0
- data/fixtures/projects/rails-3/public/javascripts/application.js +2 -0
- data/fixtures/projects/rails-3/public/javascripts/controls.js +965 -0
- data/fixtures/projects/rails-3/public/javascripts/dragdrop.js +974 -0
- data/fixtures/projects/rails-3/public/javascripts/effects.js +1123 -0
- data/fixtures/projects/rails-3/public/javascripts/prototype.js +6001 -0
- data/fixtures/projects/rails-3/public/javascripts/rails.js +175 -0
- data/fixtures/projects/rails-3/public/robots.txt +5 -0
- data/fixtures/projects/rails-3/public/stylesheets/.gitkeep +0 -0
- data/fixtures/projects/rails-3/script/rails +6 -0
- data/fixtures/projects/rails-3/test/performance/browsing_test.rb +9 -0
- data/fixtures/projects/rails-3/test/test_helper.rb +13 -0
- data/fixtures/projects/rails-3/vendor/plugins/.gitkeep +0 -0
- data/fixtures/projects/ruby/Gemfile +3 -0
- data/fixtures/projects/ruby/Gemfile.lock +10 -0
- data/fixtures/projects/ruby/Rakefile +4 -0
- data/jenkins.gemspec +33 -0
- data/lib/jenkins.rb +6 -0
- data/lib/jenkins/api.rb +250 -0
- data/lib/jenkins/cli.rb +291 -0
- data/lib/jenkins/cli/formatting.rb +53 -0
- data/lib/jenkins/config.rb +27 -0
- data/lib/jenkins/core_ext/hash.rb +9 -0
- data/lib/jenkins/core_ext/object/blank.rb +77 -0
- data/lib/jenkins/hudson-cli.jar +0 -0
- data/lib/jenkins/job_config_builder.rb +292 -0
- data/lib/jenkins/project_scm.rb +22 -0
- data/lib/jenkins/remote.rb +11 -0
- data/lib/jenkins/version.rb +3 -0
- data/spec/fixtures/ec2_global.config.xml +103 -0
- data/spec/fixtures/erlang.single.config.xml +59 -0
- data/spec/fixtures/rails.multi.config.xml +82 -0
- data/spec/fixtures/rails.single.config.triggers.xml +84 -0
- data/spec/fixtures/rails.single.config.xml +80 -0
- data/spec/fixtures/ruby.multi-ruby-multi-labels.config.xml +84 -0
- data/spec/fixtures/ruby.multi.config.xml +77 -0
- data/spec/fixtures/ruby.single.config.xml +58 -0
- data/spec/fixtures/therubyracer.config.xml +77 -0
- data/spec/hash_key_cleaner_spec.rb +25 -0
- data/spec/job_config_builder_spec.rb +150 -0
- data/spec/spec_helper.rb +15 -0
- metadata +283 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
+
<matrix-project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>git@codebasehq.com:mocra/dash/web-app.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<mergeOptions/>
|
|
31
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
32
|
+
<clean>false</clean>
|
|
33
|
+
<choosingStrategy>Default</choosingStrategy>
|
|
34
|
+
<submoduleCfg class="list"/>
|
|
35
|
+
</scm>
|
|
36
|
+
<canRoam>true</canRoam>
|
|
37
|
+
<disabled>false</disabled>
|
|
38
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
39
|
+
<concurrentBuild>false</concurrentBuild>
|
|
40
|
+
<axes>
|
|
41
|
+
</axes>
|
|
42
|
+
<builders>
|
|
43
|
+
<hudson.tasks.Shell>
|
|
44
|
+
<command>echo "Running steps..."</command>
|
|
45
|
+
</hudson.tasks.Shell>
|
|
46
|
+
<hudson.plugins.ruby.Ruby>
|
|
47
|
+
<command>unless File.exist?("config/database.yml")
|
|
48
|
+
require 'fileutils'
|
|
49
|
+
example = Dir["config/database*"].first
|
|
50
|
+
puts "Using #{example} for config/database.yml"
|
|
51
|
+
FileUtils.cp example, "config/database.yml"
|
|
52
|
+
end</command>
|
|
53
|
+
</hudson.plugins.ruby.Ruby>
|
|
54
|
+
<hudson.plugins.rake.Rake>
|
|
55
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
56
|
+
<rakeFile/>
|
|
57
|
+
<rakeLibDir/>
|
|
58
|
+
<rakeWorkingDir/>
|
|
59
|
+
<tasks>db:schema:load</tasks>
|
|
60
|
+
<silent>false</silent>
|
|
61
|
+
</hudson.plugins.rake.Rake>
|
|
62
|
+
<hudson.plugins.rake.Rake>
|
|
63
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
64
|
+
<rakeFile/>
|
|
65
|
+
<rakeLibDir/>
|
|
66
|
+
<rakeWorkingDir/>
|
|
67
|
+
<tasks>features</tasks>
|
|
68
|
+
<silent>false</silent>
|
|
69
|
+
</hudson.plugins.rake.Rake>
|
|
70
|
+
<hudson.plugins.rake.Rake>
|
|
71
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
72
|
+
<rakeFile/>
|
|
73
|
+
<rakeLibDir/>
|
|
74
|
+
<rakeWorkingDir/>
|
|
75
|
+
<tasks>spec</tasks>
|
|
76
|
+
<silent>false</silent>
|
|
77
|
+
</hudson.plugins.rake.Rake>
|
|
78
|
+
</builders>
|
|
79
|
+
<publishers/>
|
|
80
|
+
<buildWrappers/>
|
|
81
|
+
<runSequentially>false</runSequentially>
|
|
82
|
+
</matrix-project>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>git@codebasehq.com:mocra/misc/mocra-web.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<mergeOptions/>
|
|
31
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
32
|
+
<clean>false</clean>
|
|
33
|
+
<choosingStrategy>Default</choosingStrategy>
|
|
34
|
+
<submoduleCfg class="list"/>
|
|
35
|
+
</scm>
|
|
36
|
+
<canRoam>true</canRoam>
|
|
37
|
+
<disabled>false</disabled>
|
|
38
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
39
|
+
<triggers class="vector">
|
|
40
|
+
<hudson.triggers.SCMTrigger>
|
|
41
|
+
<spec># every minute
|
|
42
|
+
* * * * *</spec>
|
|
43
|
+
</hudson.triggers.SCMTrigger>
|
|
44
|
+
</triggers>
|
|
45
|
+
<concurrentBuild>false</concurrentBuild>
|
|
46
|
+
<builders>
|
|
47
|
+
<hudson.plugins.ruby.Ruby>
|
|
48
|
+
<command>
|
|
49
|
+
unless File.exist?("config/database.yml")
|
|
50
|
+
require 'fileutils'
|
|
51
|
+
example = Dir["config/database*"].first
|
|
52
|
+
puts "Using #{example} for config/database.yml"
|
|
53
|
+
FileUtils.cp example, "config/database.yml"
|
|
54
|
+
end
|
|
55
|
+
</command>
|
|
56
|
+
</hudson.plugins.ruby.Ruby>
|
|
57
|
+
<hudson.plugins.rake.Rake>
|
|
58
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
59
|
+
<rakeFile/>
|
|
60
|
+
<rakeLibDir/>
|
|
61
|
+
<rakeWorkingDir/>
|
|
62
|
+
<tasks>db:schema:load</tasks>
|
|
63
|
+
<silent>false</silent>
|
|
64
|
+
</hudson.plugins.rake.Rake>
|
|
65
|
+
<hudson.plugins.rake.Rake>
|
|
66
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
67
|
+
<rakeFile/>
|
|
68
|
+
<rakeLibDir/>
|
|
69
|
+
<rakeWorkingDir/>
|
|
70
|
+
<tasks>features</tasks>
|
|
71
|
+
<silent>false</silent>
|
|
72
|
+
</hudson.plugins.rake.Rake>
|
|
73
|
+
<hudson.plugins.rake.Rake>
|
|
74
|
+
<rakeInstallation>(Default)</rakeInstallation>
|
|
75
|
+
<rakeFile/>
|
|
76
|
+
<rakeLibDir/>
|
|
77
|
+
<rakeWorkingDir/>
|
|
78
|
+
<tasks>spec</tasks>
|
|
79
|
+
<silent>false</silent>
|
|
80
|
+
</hudson.plugins.rake.Rake>
|
|
81
|
+
</builders>
|
|
82
|
+
<publishers/>
|
|
83
|
+
<buildWrappers/>
|
|
84
|
+
</project>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>git://codebasehq.com/mocra/misc/mocra-web.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<localBranch/>
|
|
31
|
+
<mergeOptions/>
|
|
32
|
+
<recursiveSubmodules>false</recursiveSubmodules>
|
|
33
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
34
|
+
<authorOrCommitter>false</authorOrCommitter>
|
|
35
|
+
<clean>false</clean>
|
|
36
|
+
<wipeOutWorkspace>false</wipeOutWorkspace>
|
|
37
|
+
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
|
|
38
|
+
<gitTool>Default</gitTool>
|
|
39
|
+
<submoduleCfg class="list"/>
|
|
40
|
+
<relativeTargetDir/>
|
|
41
|
+
<excludedRegions/>
|
|
42
|
+
<excludedUsers/>
|
|
43
|
+
</scm>
|
|
44
|
+
<canRoam>true</canRoam>
|
|
45
|
+
<disabled>false</disabled>
|
|
46
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
47
|
+
<triggers class="vector"/>
|
|
48
|
+
<concurrentBuild>false</concurrentBuild>
|
|
49
|
+
<builders>
|
|
50
|
+
<hudson.tasks.Shell>
|
|
51
|
+
<command>bundle install</command>
|
|
52
|
+
</hudson.tasks.Shell>
|
|
53
|
+
<hudson.plugins.ruby.Ruby>
|
|
54
|
+
<command>
|
|
55
|
+
unless File.exist?("config/database.yml")
|
|
56
|
+
require 'fileutils'
|
|
57
|
+
example = Dir["config/database*"].first
|
|
58
|
+
puts "Using #{example} for config/database.yml"
|
|
59
|
+
FileUtils.cp example, "config/database.yml"
|
|
60
|
+
end
|
|
61
|
+
</command>
|
|
62
|
+
</hudson.plugins.ruby.Ruby>
|
|
63
|
+
<hudson.tasks.Shell>
|
|
64
|
+
<command>bundle exec rake db:create:all</command>
|
|
65
|
+
</hudson.tasks.Shell>
|
|
66
|
+
<hudson.tasks.Shell>
|
|
67
|
+
<command>if [ -f db/schema.rb ]; then
|
|
68
|
+
bundle exec rake db:schema:load
|
|
69
|
+
else
|
|
70
|
+
bundle exec rake db:migrate
|
|
71
|
+
fi
|
|
72
|
+
</command>
|
|
73
|
+
</hudson.tasks.Shell>
|
|
74
|
+
<hudson.tasks.Shell>
|
|
75
|
+
<command>bundle exec rake</command>
|
|
76
|
+
</hudson.tasks.Shell>
|
|
77
|
+
</builders>
|
|
78
|
+
<publishers/>
|
|
79
|
+
<buildWrappers/>
|
|
80
|
+
</project>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<matrix-project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>http://github.com/drnic/picasa_plucker.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<localBranch/>
|
|
31
|
+
<mergeOptions/>
|
|
32
|
+
<recursiveSubmodules>false</recursiveSubmodules>
|
|
33
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
34
|
+
<authorOrCommitter>false</authorOrCommitter>
|
|
35
|
+
<clean>false</clean>
|
|
36
|
+
<wipeOutWorkspace>false</wipeOutWorkspace>
|
|
37
|
+
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
|
|
38
|
+
<gitTool>Default</gitTool>
|
|
39
|
+
<submoduleCfg class="list"/>
|
|
40
|
+
<relativeTargetDir/>
|
|
41
|
+
<excludedRegions/>
|
|
42
|
+
<excludedUsers/>
|
|
43
|
+
</scm>
|
|
44
|
+
<canRoam>true</canRoam>
|
|
45
|
+
<disabled>false</disabled>
|
|
46
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
47
|
+
<triggers class="vector"/>
|
|
48
|
+
<concurrentBuild>false</concurrentBuild>
|
|
49
|
+
<axes>
|
|
50
|
+
<hudson.matrix.TextAxis>
|
|
51
|
+
<name>RUBY_VERSION</name>
|
|
52
|
+
<values>
|
|
53
|
+
<string>1.8.7</string>
|
|
54
|
+
<string>1.9.2</string>
|
|
55
|
+
<string>rbx-head</string>
|
|
56
|
+
<string>jruby</string>
|
|
57
|
+
</values>
|
|
58
|
+
</hudson.matrix.TextAxis>
|
|
59
|
+
<hudson.matrix.LabelAxis>
|
|
60
|
+
<name>label</name>
|
|
61
|
+
<values>
|
|
62
|
+
<string>1.8.7</string>
|
|
63
|
+
<string>ubuntu</string>
|
|
64
|
+
</values>
|
|
65
|
+
</hudson.matrix.LabelAxis>
|
|
66
|
+
</axes>
|
|
67
|
+
<builders>
|
|
68
|
+
<hudson.tasks.Shell>
|
|
69
|
+
<command>rvm $RUBY_VERSION</command>
|
|
70
|
+
</hudson.tasks.Shell>
|
|
71
|
+
<hudson.tasks.Shell>
|
|
72
|
+
<command>rvm gemset create ruby-$RUBY_VERSION && rvm gemset use ruby-$RUBY_VERSION</command>
|
|
73
|
+
</hudson.tasks.Shell>
|
|
74
|
+
<hudson.tasks.Shell>
|
|
75
|
+
<command>bundle install</command>
|
|
76
|
+
</hudson.tasks.Shell>
|
|
77
|
+
<hudson.tasks.Shell>
|
|
78
|
+
<command>bundle exec rake</command>
|
|
79
|
+
</hudson.tasks.Shell>
|
|
80
|
+
</builders>
|
|
81
|
+
<publishers/>
|
|
82
|
+
<buildWrappers/>
|
|
83
|
+
<runSequentially>false</runSequentially>
|
|
84
|
+
</matrix-project>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<matrix-project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>http://github.com/drnic/picasa_plucker.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<localBranch/>
|
|
31
|
+
<mergeOptions/>
|
|
32
|
+
<recursiveSubmodules>false</recursiveSubmodules>
|
|
33
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
34
|
+
<authorOrCommitter>false</authorOrCommitter>
|
|
35
|
+
<clean>false</clean>
|
|
36
|
+
<wipeOutWorkspace>false</wipeOutWorkspace>
|
|
37
|
+
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
|
|
38
|
+
<gitTool>Default</gitTool>
|
|
39
|
+
<submoduleCfg class="list"/>
|
|
40
|
+
<relativeTargetDir/>
|
|
41
|
+
<excludedRegions/>
|
|
42
|
+
<excludedUsers/>
|
|
43
|
+
</scm>
|
|
44
|
+
<canRoam>true</canRoam>
|
|
45
|
+
<disabled>false</disabled>
|
|
46
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
47
|
+
<triggers class="vector"/>
|
|
48
|
+
<concurrentBuild>false</concurrentBuild>
|
|
49
|
+
<axes>
|
|
50
|
+
<hudson.matrix.TextAxis>
|
|
51
|
+
<name>RUBY_VERSION</name>
|
|
52
|
+
<values>
|
|
53
|
+
<string>1.8.7</string>
|
|
54
|
+
<string>1.9.2</string>
|
|
55
|
+
<string>rbx-head</string>
|
|
56
|
+
<string>jruby</string>
|
|
57
|
+
</values>
|
|
58
|
+
</hudson.matrix.TextAxis>
|
|
59
|
+
</axes>
|
|
60
|
+
<builders>
|
|
61
|
+
<hudson.tasks.Shell>
|
|
62
|
+
<command>rvm $RUBY_VERSION</command>
|
|
63
|
+
</hudson.tasks.Shell>
|
|
64
|
+
<hudson.tasks.Shell>
|
|
65
|
+
<command>rvm gemset create ruby-$RUBY_VERSION && rvm gemset use ruby-$RUBY_VERSION</command>
|
|
66
|
+
</hudson.tasks.Shell>
|
|
67
|
+
<hudson.tasks.Shell>
|
|
68
|
+
<command>bundle install</command>
|
|
69
|
+
</hudson.tasks.Shell>
|
|
70
|
+
<hudson.tasks.Shell>
|
|
71
|
+
<command>bundle exec rake</command>
|
|
72
|
+
</hudson.tasks.Shell>
|
|
73
|
+
</builders>
|
|
74
|
+
<publishers/>
|
|
75
|
+
<buildWrappers/>
|
|
76
|
+
<runSequentially>false</runSequentially>
|
|
77
|
+
</matrix-project>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project>
|
|
3
|
+
<actions/>
|
|
4
|
+
<description/>
|
|
5
|
+
<keepDependencies>false</keepDependencies>
|
|
6
|
+
<properties/>
|
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
|
8
|
+
<configVersion>1</configVersion>
|
|
9
|
+
<remoteRepositories>
|
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
|
11
|
+
<string>origin</string>
|
|
12
|
+
<int>5</int>
|
|
13
|
+
<string>fetch</string>
|
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
|
15
|
+
<string>receivepack</string>
|
|
16
|
+
<string>git-upload-pack</string>
|
|
17
|
+
<string>uploadpack</string>
|
|
18
|
+
<string>git-upload-pack</string>
|
|
19
|
+
<string>url</string>
|
|
20
|
+
<string>git://codebasehq.com/mocra/misc/mocra-web.git</string>
|
|
21
|
+
<string>tagopt</string>
|
|
22
|
+
<string/>
|
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
|
24
|
+
</remoteRepositories>
|
|
25
|
+
<branches>
|
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
|
27
|
+
<name>master</name>
|
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
|
29
|
+
</branches>
|
|
30
|
+
<localBranch/>
|
|
31
|
+
<mergeOptions/>
|
|
32
|
+
<recursiveSubmodules>false</recursiveSubmodules>
|
|
33
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
34
|
+
<authorOrCommitter>false</authorOrCommitter>
|
|
35
|
+
<clean>false</clean>
|
|
36
|
+
<wipeOutWorkspace>false</wipeOutWorkspace>
|
|
37
|
+
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
|
|
38
|
+
<gitTool>Default</gitTool>
|
|
39
|
+
<submoduleCfg class="list"/>
|
|
40
|
+
<relativeTargetDir/>
|
|
41
|
+
<excludedRegions/>
|
|
42
|
+
<excludedUsers/>
|
|
43
|
+
</scm>
|
|
44
|
+
<canRoam>true</canRoam>
|
|
45
|
+
<disabled>false</disabled>
|
|
46
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
47
|
+
<concurrentBuild>false</concurrentBuild>
|
|
48
|
+
<builders>
|
|
49
|
+
<hudson.tasks.Shell>
|
|
50
|
+
<command>bundle install</command>
|
|
51
|
+
</hudson.tasks.Shell>
|
|
52
|
+
<hudson.tasks.Shell>
|
|
53
|
+
<command>bundle exec rake</command>
|
|
54
|
+
</hudson.tasks.Shell>
|
|
55
|
+
</builders>
|
|
56
|
+
<publishers/>
|
|
57
|
+
<buildWrappers/>
|
|
58
|
+
</project>
|