-
Notifications
You must be signed in to change notification settings - Fork 95
/
Rakefile
316 lines (275 loc) · 8.35 KB
/
Rakefile
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# This file is a rake build file. The purpose of this file is to simplify
# setting up and using Awestruct. It's not required to use Awestruct, though it
# does save you time (hopefully). If you don't want to use rake, just ignore or
# delete this file.
#
# If you're just getting started, execute this command to install Awestruct and
# the libraries on which it depends:
#
# rake setup
#
# The setup task installs the necessary libraries according to which Ruby
# environment you are using. If you want the libraries kept inside the project,
# execute this command instead:
#
# rake setup[local]
#
# IMPORTANT: To install gems, you'll need development tools on your machine,
# which include a C compiler, the Ruby development libraries and some other
# development libraries as well.
#
# There are also tasks for running Awestruct. The build will auto-detect
# whether you are using Bundler and, if you are, wrap calls to awestruct in
# `bundle exec`.
#
# To run in Awestruct in development mode, execute:
#
# rake
#
# To clean the generated site before you build, execute:
#
# rake clean preview
#
# To deploy using the production profile, execute:
#
# rake deploy
#
# To get a list of all tasks, execute:
#
# rake -T
#
# Now you're Awestruct with rake!
require 'rubygems'
#$use_bundle_exec = true
#$install_gems = ['awestruct -v "~> 0.5.3"', 'rb-inotify -v "~> 0.9.0"']
#$awestruct_cmd = nil
task :default => :preview
task :my_task, :arg1, :arg2 do |t, args|
puts "Args were: #{args}"
end
desc 'retrieve local git repo information'
task :info, :profile do |t, args|
puts "Local repository information for profile #{args}"
puts "Local branch=" + retrieve_local_branch_name()
exit 0
end
def retrieve_local_branch_name()
localBranch = %x(git rev-parse --abbrev-ref HEAD)
return localBranch
end
desc 'Setup the environment to run Awestruct'
task :setup, [:env] => :init do |task, args|
next if !which('awestruct').nil?
if File.exist? 'Gemfile'
if args[:env] == 'local'
require 'fileutils'
FileUtils.remove_file 'Gemfile.lock', true
FileUtils.remove_dir '.bundle', true
system 'bundle install --binstubs=_bin --path=.bundle'
else
system 'bundle install'
end
else
if args[:env] == 'local'
$install_gems.each do |gem|
msg "Installing #{gem}..."
system "gem install --bindir=_bin --install-dir=.bundle #{gem}"
end
else
$install_gems.each do |gem|
msg "Installing #{gem}..."
system "gem install #{gem}"
end
end
end
msg 'Run awestruct using `awestruct` or `rake`'
# Don't execute any more tasks, need to reset env
exit 0
end
desc 'Update the environment to run Awestruct'
task :update => :init do
if File.exist? 'Gemfile'
system 'bundle update'
else
system 'gem update awestruct'
end
# Don't execute any more tasks, need to reset env
exit 0
end
desc 'Update/install the environment to run Awestruct'
task :install => :init do
if File.exist? 'Gemfile'
system 'bundle install'
else
system 'gem update awestruct'
end
# Don't execute any more tasks, need to reset env
exit 0
end
desc 'Build and preview the site locally in development mode'
task :preview => :check do
run_awestruct "-d --no-livereload"
end
desc 'Generate the site using the specified profile (default: development)'
task :gen => :check do |task, args|
profile = args[0] || 'development'
profile = 'production' if profile == 'prod'
run_awestruct "-P #{profile} -g --force"
end
desc 'Push local commits to origin/develop'
task :push do
system 'git push origin develop'
end
desc 'Generate the site and deploy to production'
task :deploy => [:push, :check] do |task, args|
run_awestruct '-P #{profile} -g --force'
run_awestruct '-P #{profile} --deploy'
end
desc 'Clean out generated site and temporary files'
task :clean, :spec do |task, args|
require 'fileutils'
dirs = ['.awestruct', '.sass-cache', '_site']
if args[:spec] == 'all'
dirs << '_tmp'
end
dirs.each do |dir|
FileUtils.remove_dir dir unless !File.directory? dir
end
end
# Perform initialization steps, such as setting up the PATH
task :init do
# Detect using gems local to project
if File.exist? '_bin'
ENV['PATH'] = "_bin#{File::PATH_SEPARATOR}#{ENV['PATH']}"
ENV['GEM_HOME'] = '.bundle'
end
end
desc 'Check to ensure the environment is properly configured'
task :check => :init do |task, args|
if !File.exist? 'Gemfile'
if which('awestruct').nil?
msg 'Could not find awestruct.', :warn
msg 'Run `rake setup` or `rake setup[local]` to install from RubyGems.'
# Enable once the rubygem-awestruct RPM is available
#msg 'Run `sudo yum install rubygem-awestruct` to install via RPM. (Fedora >= 18)'
exit 1
else
$use_bundle_exec = false
next
end
end
begin
require 'bundler'
Bundler.setup
rescue LoadError
$use_bundle_exec = false
rescue StandardError => e
msg e.message, :warn
if which('awestruct').nil?
msg 'Run `rake setup` or `rake setup[local]` to install required gems from RubyGems.'
else
msg 'Run `rake install` to install additional required gems from RubyGems.'
end
exit e.status_code
end
end
# Execute Awestruct
def run_awestruct(args)
system "#{$use_bundle_exec ? 'bundle exec ' : ''}awestruct #{args}"
end
# A cross-platform means of finding an executable in the $PATH.
# Respects $PATHEXT, which lists valid file extensions for executables on Windows
#
# which 'awestruct'
# => /usr/bin/awestruct
def which(cmd, opts = {})
unless $awestruct_cmd.nil? || opts[:clear_cache]
return $awestruct_cmd
end
$awestruct_cmd = nil
exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
exts.each do |ext|
candidate = File.join path, "#{cmd}#{ext}"
if File.executable? candidate
$awestruct_cmd = candidate
return $awestruct_cmd
end
end
end
return $awestruct_cmd
end
# Print a message to STDOUT
def msg(text, level = :info)
case level
when :warn
puts "\e[31m#{text}\e[0m"
else
puts "\e[33m#{text}\e[0m"
end
end
desc 'Run the awestruct build'
task :buildstaging do
success = system "bundle exec awestruct -P staging -g"
fail unless success
end
desc 'Check for errors'
task :errorcheck do
errorcheck
end
def errorcheck
puts 'Looking for awestruct errors in output:'
success = system "grep -lr 'awestruct/engine' --exclude=Rakefile _site/"
if success
puts 'Errors found in output. Check files listed above.'
fail
end
puts 'No errors found!'
end
############################################################################
#
# Build web site on GitHub Actions
#
############################################################################
desc 'Generate site from GitHub Actions and publish site'
task :actions do
# if this is a pull request, do a simple build of the site and stop
if ENV['GITHUB_EVENT_NAME'] == 'pull_request' or ENV['GITHUB_EVENT_NAME'] == 'workflow_run'
puts 'Pull request detected. Executing build only.'
system "bundle exec awestruct -P development -g"
errorcheck
next
end
tag = false
if ENV['GITHUB_REF'].to_s.scan(/production$/).length > 0
tag = true
puts 'Building production branch build.'
profile = 'production'
deploy_url = "tools@filemgmt-prod-sync.jboss.org:/www_htdocs/tools"
else
puts ENV['GITHUB_REF'].to_s + ' branch is not configured for GitHub Actions builds - skipping.'
next
end
# Build execution
system "bundle exec awestruct -P #{profile} -g"
# Workaround for not having the above separated out properly in subtasks
errorcheck
puts "## Deploying website via rsync to #{deploy_url}"
success = system("rsync -Pqr --protocol=28 -e 'ssh -p 2222' _site/* #{deploy_url}")
if tag
puts '## Tagging repo'
system("git config --global user.email 'tools@jboss.org'")
system("git config --global user.name 'JBoss Tools CI'")
system('git tag $GIT_TAG -a -m "Published to production from GitHub Actions build $GITHUB_RUN_ID"')
system("git push origin $GIT_TAG")
end
fail unless success
end
task :rultormerge do
profile = 'staging'
deploy_url = "tools@filemgmt-prod-sync.jboss.org:/stg_htdocs/tools/pr/${pull_id}"
# Build execution
system "bundle exec awestruct -P #{profile} -g"
# Workaround for not having the above separated out properly in subtasks
errorcheck
end