[Groonga-commit] groonga/groonga at 9bb47a7 [master] apt: use self-build jessie, stretch box

Back to archive index

Kentaro Hayashi null+****@clear*****
Sat Jun 24 00:09:38 JST 2017


Kentaro Hayashi	2017-06-24 00:09:38 +0900 (Sat, 24 Jun 2017)

  New Revision: 9bb47a71567c071507030777e018a9836e34fddd
  https://github.com/groonga/groonga/commit/9bb47a71567c071507030777e018a9836e34fddd

  Message:
    apt: use self-build jessie,stretch box
    
    official box is not released yet, so use our box until then.

  Modified files:
    packages/apt/Vagrantfile

  Modified: packages/apt/Vagrantfile (+23 -3)
===================================================================
--- packages/apt/Vagrantfile    2017-06-24 00:07:41 +0900 (2c34e3e)
+++ packages/apt/Vagrantfile    2017-06-24 00:09:38 +0900 (fc5872f)
@@ -6,19 +6,39 @@ VAGRANTFILE_API_VERSION = "2"
 
 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
   vms = [
+    # {
+    #   :id => "debian-jessie-i386",
+    #   :box => "bento/debian-8.7-i386",
+    # },
+    # {
+    #   :id => "debian-jessie-amd64",
+    #   :box => "bento/debian-8.7",
+    # },
     {
       :id => "debian-jessie-i386",
-      :box => "bento/debian-8.7-i386",
+      :box_url => "http://packages.groonga.org/tmp/debian-8.8-i386.virtualbox.box",
     },
     {
       :id => "debian-jessie-amd64",
-      :box => "bento/debian-8.7",
+      :box_url => "http://packages.groonga.org/tmp/debian-8.8.virtualbox.box",
+    },
+    {
+      :id => "debian-stretch-i386",
+      :box_url => "http://packages.groonga.org/tmp/debian-9.0-i386.virtualbox.box",
+    },
+    {
+      :id => "debian-stretch-amd64",
+      :box_url => "http://packages.groonga.org/tmp/debian-9.0.virtualbox.box",
     },
   ]
 
   vms.each do |vm|
     config.vm.define(vm[:id]) do |node|
-      node.vm.box = vm[:box]
+      # Use official box
+      #node.vm.box = vm[:box]
+      # Use box and box_url until official box is released
+      node.vm.box = vm[:id]
+      node.vm.box_url = vm[:box_url]
       hour_in_seconds = 60 * 60
       node.vm.boot_timeout = 1 * hour_in_seconds
       node.vm.provision(:shell, :privileged => false, :path => "build-deb.sh")
-------------- next part --------------
HTML����������������������������...
下載 



More information about the Groonga-commit mailing list
Back to archive index