]> git.openstreetmap.org Git - chef.git/commitdiff
Add test for tilelog cookbook
authorTom Hughes <tom@compton.nu>
Tue, 25 Feb 2020 19:28:31 +0000 (19:28 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 25 Feb 2020 19:28:31 +0000 (19:28 +0000)
.github/workflows/test-kitchen.yml
.kitchen.yml
cookbooks/tilelog/recipes/default.rb

index edfe0b8321479d98e3b4dfe86d4562734ea1c7b2..e15ed4eac7e511870c44d2cab167e336cf2849ee 100644 (file)
@@ -82,6 +82,7 @@ jobs:
           - taginfo
           - tile
           - tilecache
+          - tilelog
           - tools
           - trac
           - web-backend
index 572ec58dd80055da86e7543dec74d67446030af8..e63b8b85518685c6f79f9c1f1e1b9745ea55f23c 100644 (file)
@@ -293,6 +293,9 @@ suites:
   - name: tilecache
     run_list:
       - recipe[tilecache::default]
+  - name: tilelog
+    run_list:
+      - recipe[tilelog::default]
   - name: tools
     run_list:
       - recipe[tools::default]
index 0eefa7c7c1f82ef82c91432078271ccd62dc9f29..56d7870f3c6b60ad5929a71b543ce4cc6577ab62 100644 (file)
 # limitations under the License.
 #
 
+include_recipe "git"
 include_recipe "tools"
 
 package %w[
   gcc
+  g++
   make
   autoconf
   automake
   libboost-filesystem-dev
-  libboost-system-dev
   libboost-program-options-dev
+  libboost-system-dev
 ]
 
 tilelog_source_directory = node[:tilelog][:source_directory]
@@ -93,4 +95,5 @@ directory tilelog_output_directory do
   user "www-data"
   group "www-data"
   mode 0o755
+  recursive true
 end