forked from code-dot-org/code-dot-org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
210 lines (172 loc) · 6.11 KB
/
Rakefile
File metadata and controls
210 lines (172 loc) · 6.11 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
require_relative './deployment'
require 'cdo/hip_chat'
require 'cdo/rake_utils'
def with_retries(count=5)
begin
yield if block_given?
rescue
raise if (count -= 1) == 0
sleep 2.25
end
end
##################################################################################################
##
##
## build
##
##
##################################################################################################
namespace :build do
task :configure do
if CDO.chef_managed && !(rack_env?(:production) && CDO.name =='daemon') && !rack_env?(:test) && !rack_env?(:staging)
HipChat.log 'Applying <b>chef</b> profile...'
RakeUtils.sudo 'chef-client'
end
Dir.chdir(aws_dir) do
unless CDO.chef_managed
HipChat.log 'Installing <b>aws</b> bundle...'
RakeUtils.bundle_install
end
HipChat.log 'Configuring <b>aws</b>...'
RakeUtils.rake
end
end
task :blockly_core do
Dir.chdir(blockly_core_dir) do
HipChat.log 'Building <b>blockly-core</b> debug...'
RakeUtils.system './deploy.sh', 'debug'
HipChat.log 'Building <b>blockly-core</b>...'
RakeUtils.system './deploy.sh'
end
end
task :blockly do
Dir.chdir(blockly_dir) do
HipChat.log 'Installing <b>blockly</b> dependencies...'
RakeUtils.npm_install
HipChat.log 'Building <b>blockly</b>...'
if CDO.localize_blockly
RakeUtils.system 'MOOC_LOCALIZE=1', 'grunt'
else
RakeUtils.system 'grunt'
end
end
end
task :stop_varnish do
Dir.chdir(aws_dir) do
unless rack_env?(:development) || (RakeUtils.system_('ps aux | grep -v grep | grep varnishd -q') != 0)
HipChat.log 'Stopping <b>varnish</b>...'
RakeUtils.stop_service 'varnish'
end
end
end
task :dashboard do
Dir.chdir(dashboard_dir) do
HipChat.log 'Stopping <b>dashboard</b>...'
RakeUtils.stop_service CDO.dashboard_unicorn_name unless rack_env?(:development)
HipChat.log 'Installing <b>dashboard</b> bundle...'
RakeUtils.bundle_install
if CDO.daemon || rack_env?(:levelbuilder)
RakeUtils.rake 'db:create' unless rack_env?(:production)
HipChat.log 'Migrating <b>dashboard</b> database...'
RakeUtils.rake 'db:migrate'
HipChat.log 'Seeding <b>dashboard</b>...'
RakeUtils.rake 'seed:all'
end
unless rack_env?(:development)
HipChat.log 'Precompiling <b>dashboard</b> assets...'
RakeUtils.rake 'assets:precompile'
end
HipChat.log 'Starting <b>dashboard</b>.'
RakeUtils.start_service CDO.dashboard_unicorn_name unless rack_env?(:development)
if rack_env?(:production)
RakeUtils.system 'rake', "honeybadger:deploy TO=#{rack_env} REVISION=`git rev-parse HEAD`"
end
end
end
task :pegasus do
Dir.chdir(pegasus_dir) do
HipChat.log 'Stopping <b>pegasus</b>...'
RakeUtils.stop_service CDO.pegasus_unicorn_name unless rack_env?(:development)
HipChat.log 'Installing <b>pegasus</b> bundle...'
RakeUtils.bundle_install
if CDO.daemon
HipChat.log 'Migrating <b>pegasus</b> database...'
with_retries { RakeUtils.rake 'db:migrate' }
HipChat.log 'Seeding <b>pegasus</b>...'
with_retries { RakeUtils.rake 'seed:migrate' }
end
if CDO.daemon && !rack_env?(:development)
HipChat.log 'Analyzing <b>pegasus</b> hour-of-code activity...'
RakeUtils.system 'sites.v3/code.org/bin/analyze_hoc_activity'
end
HipChat.log 'Starting <b>pegasus</b>.'
RakeUtils.start_service CDO.pegasus_unicorn_name unless rack_env?(:development)
end
end
task :start_varnish do
Dir.chdir(aws_dir) do
unless rack_env?(:development) || (RakeUtils.system_('ps aux | grep -v grep | grep varnishd -q') == 0)
HipChat.log 'Starting <b>varnish</b>...'
RakeUtils.start_service 'varnish'
end
end
end
tasks = []
tasks << :configure
tasks << :blockly_core if CDO.build_blockly_core
tasks << :blockly if CDO.build_blockly
tasks << :stop_varnish if CDO.build_dashboard || CDO.build_pegasus
tasks << :dashboard if CDO.build_dashboard
tasks << :pegasus if CDO.build_pegasus
tasks << :start_varnish if CDO.build_dashboard || CDO.build_pegasus
task :all => tasks
end
task :build => ['build:all']
##################################################################################################
##
##
## install
##
##
##################################################################################################
namespace :install do
task :dashboard do
unless CDO.chef_managed
Dir.chdir(aws_dir) { RakeUtils.rake }
Dir.chdir(dashboard_dir) do
RakeUtils.bundle_install
unless rack_env?(:production)
RakeUtils.rake 'db:create'
RakeUtils.rake 'db:schema:load'
end
RakeUtils.sudo_ln_s dashboard_dir('config/init.d'), File.join('/etc/init.d', CDO.dashboard_unicorn_name)
RakeUtils.sudo 'update-rc.d', CDO.dashboard_unicorn_name, 'defaults'
RakeUtils.sudo_ln_s dashboard_dir('config/logrotate'), File.join('/etc/logrotate.d', CDO.dashboard_unicorn_name)
RakeUtils.sudo 'service', CDO.dashboard_unicorn_name, 'start'
end
end
end
task :pegasus do
unless CDO.chef_managed
Dir.chdir(aws_dir) { RakeUtils.rake }
Dir.chdir(pegasus_dir) do
RakeUtils.bundle_install
unless rack_env?(:production)
RakeUtils.system 'echo', "'CREATE DATABASE IF NOT EXISTS #{CDO.pegasus_db_name}'", '|', 'mysql', '-uroot'
RakeUtils.rake 'db:migrate'
RakeUtils.rake 'seed:migrate'
end
RakeUtils.sudo_ln_s dashboard_dir('config/init.d'), File.join('/etc/init.d', CDO.pegasus_unicorn_name)
RakeUtils.sudo 'update-rc.d', CDO.pegasus_unicorn_name, 'defaults'
RakeUtils.sudo 'service', CDO.pegasus_unicorn_name, 'start'
end
end
end
tasks = []
#tasks << :blockly_core if CDO.build_blockly_core
#tasks << :blockly if CDO.build_blockly
tasks << :dashboard if CDO.build_dashboard
tasks << :pegasus if CDO.build_pegasus
task :all => tasks
end
task :install => ['install:all']