Skip to content

Commit 9050c9a

Browse files
committed
Merge pull request #35 from rightscale-cookbooks/white_14_02_acu152271_upgrade_vagrant_on_CI
Upgrade to a newer version of Vagrant which allows for multiple VM instances to be run
2 parents d308e8a + 635774d commit 9050c9a

File tree

4 files changed

+6
-24
lines changed

4 files changed

+6
-24
lines changed

attributes/vagrant.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
# limitations under the License.
1818
#
1919

20-
default['rs-cookbooks_ci']['vagrant']['url'] = 'http://files.vagrantup.com/packages/a40522f5fabccb9ddabad03d836e120ff5d14093/vagrant_1.3.5_x86_64.deb'
21-
default['rs-cookbooks_ci']['vagrant']['checksum'] = 'db7d06f46e801523d97b6e344ea0e4fe942f630cc20ab1706e4c996872f8cd71'
22-
23-
default['rs-cookbooks_ci']['vagrant']['plugins'] = ['vagrant-berkshelf', 'vagrant-omnibus', 'bindler']
20+
default['rs-cookbooks_ci']['vagrant']['url'] = 'https://dl.bintray.com/mitchellh/vagrant/vagrant_1.4.3_x86_64.deb'
21+
default['rs-cookbooks_ci']['vagrant']['checksum'] = 'dbd06de0f3560e2d046448d627bca0cbb0ee34b036ef605aa87ed20e6ad2684b'
22+
default['rs-cookbooks_ci']['vagrant']['plugins'] = []

metadata.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
license 'Apache 2.0'
55
description 'Installs/Configures rs-cookbooks_ci'
66
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7-
version '0.2.2'
7+
version '0.2.3'
88

99
supports "ubuntu"
1010

@@ -15,7 +15,7 @@
1515
depends "line", "~> 0.5.1"
1616
depends "jenkins", "~> 1.2.0"
1717
depends "vagrant", "~> 0.2.0"
18-
depends "virtualbox", "~> 1.0.0"
18+
depends "virtualbox", "~> 1.0.2"
1919
depends "git", "~> 2.7.0"
2020

2121
recipe "rs-cookbooks_ci::default",

templates/default/job_config_pr.xml.erb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
3434
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
3535
<triggers>
36-
<com.cloudbees.jenkins.GitHubPushTrigger plugin="github@1.8">
37-
<spec></spec>
38-
</com.cloudbees.jenkins.GitHubPushTrigger>
3936
<org.jenkinsci.plugins.ghprb.GhprbTrigger plugin="ghprb@1.9">
4037
<spec></spec>
4138
<adminlist><%= @job_admins_list %></adminlist>

test/integration/default/bats/default.bats

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,13 @@
77
}
88

99
@test "Check that the correct version for vagrant is installed" {
10-
vagrant --version | grep '1\.3\.5'
10+
vagrant --version | grep '1\.4\.3'
1111
}
1212

1313
@test "Check that the correct version of virtualbox is installed" {
1414
vboxmanage --version | grep '^4\.3'
1515
}
1616

17-
# Check that the following vagrant plugins are installed: vagrant-berkshelf, vagrant-omnibus, bindler
18-
19-
@test "Check that the vagrant-berkshelf plugin is installed" {
20-
sudo -i -u jenkins vagrant plugin list | grep vagrant-berkshelf
21-
}
22-
23-
@test "Check that the vagrant-omnibus plugin is installed" {
24-
sudo -i -u jenkins vagrant plugin list | grep vagrant-omnibus
25-
}
26-
27-
@test "Check that the bindler plugin is installed" {
28-
sudo -i -u jenkins vagrant plugin list | grep bindler
29-
}
30-
3117
# Check that Ruby v1.9.3 is installed
3218

3319
@test "Check that Ruby is installed" {

0 commit comments

Comments
 (0)