← Back to team overview

checkbox-dev team mailing list archive

[PATCH 1/3] Updated tarmac test scripts and Vagrant file to reflect current releases.

 

Will be testing:
- precise 12.04  (current LTS - supported until April 2017)
- saucy 13.10  (current stable - supported until July 2014)
- trusty 14.04 (development version to be supported until April 2019)

We're dropping quantal 12.10 (supported until April 2014, but no longer
used for any relevant projects) and raring 13.04 (EOL as
of January 27th, 2013).
---
 Vagrantfile        | 16 ++++++++--------
 test-in-vagrant.sh |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/Vagrantfile b/Vagrantfile
index 7fdcad2..5981ff2 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -11,16 +11,16 @@ Vagrant::Config.run do |config|
     precise_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-i386-vagrant-disk1.box";
   end
 
-  # Define a Ubuntu Server image (cloud) for the 12.10 release (quantal)
-  config.vm.define :quantal do |quantal_config|
-    quantal_config.vm.box = "quantal-cloud-i386"
-    quantal_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/quantal/current/quantal-server-cloudimg-i386-vagrant-disk1.box";
+  # Define a Ubuntu Server image (cloud) for the 13.10 release (saucy)
+  config.vm.define :saucy do |saucy_config|
+    saucy_config.vm.box = "saucy-cloud-i386"
+    saucy_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-i386-vagrant-disk1.box";
   end
 
-  # Define a Ubuntu Server image (cloud) for the 13.04 release (raring)
-  config.vm.define :raring do |raring_config|
-    raring_config.vm.box = "raring-cloud-i386"
-    raring_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box";
+  # Define a Ubuntu Server image (cloud) for the 14.04 release (trusty)
+  config.vm.define :trusty do |trusty_config|
+    trusty_config.vm.box = "trusty-cloud-i386"
+    trusty_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box";
   end
 
   # For debugging and later future GUI testing
diff --git a/test-in-vagrant.sh b/test-in-vagrant.sh
index 1ec0ebf..894fad9 100755
--- a/test-in-vagrant.sh
+++ b/test-in-vagrant.sh
@@ -25,7 +25,7 @@ fi
 
 if [ "$1" = "" ]; then
     # XXX: this list needs to be in sync with Vagrantfile
-    target_list="precise quantal raring"
+    target_list="precise saucy trusty"
 else
     target_list="$1"
 fi
-- 
1.8.1.2



Follow ups

References