This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
115 lines (101 loc) · 2.3 KB
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
driver:
name: docker
use_sudo: false
provisioner:
name: chef_zero
require_chef_omnibus: 12.16.42
platforms:
- name: centos-7.0
- name: debian-8.0
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[mecab]
- name: ipadic
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[mecab::ipadic]
- name: jumandic
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[mecab::jumandic]
- name: unidic
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[zip]
- recipe[mecab::unidic]
- name: naistjdic
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[tar]
- recipe[mecab::naistjdic]
- name: python
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[poise-python]
- recipe[mecab]
- recipe[mecab::mecab-python]
attributes:
poise-python:
options:
virtualenv_version: false
dev_package: true
version: '2.7'
mecab-python:
python_dev_include_path: "/opt/rh/python27/root/usr/include/python2.7/" # workaround for centos
python_dev_lib_path: "/opt/rh/python27/root/lib64/libpython2.7.so"
- name: java
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[java]
- recipe[mecab]
- recipe[mecab::mecab-java]
attributes:
java:
install_flavor: "oracle"
jdk_version: 7
oracle:
accept_oracle_download_terms: true
- name: perl
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[perl]
- recipe[mecab]
- recipe[mecab::mecab-perl]
- name: ruby
run_list:
- recipe[apt]
- recipe[build-essential]
- recipe[git]
- recipe[ruby_build]
- recipe[ruby_rbenv::system]
- recipe[mecab]
- recipe[mecab::mecab-ruby]
attributes:
rbenv:
rubies:
- name: 2.3.0
environment:
CONFIGURE_OPTS: --disable-install-rdoc
global: 2.3.0
busser:
sudo: false