
Till now, log viewer was rendered in handlebars, which was the simplest solution, but it had a major drawback - every append to log caused it to rerender which was not efficient and memory consuming. The new approach is to make Travis.Log interpret the log and send lines with instructions to the view, so for example if view should add a line, it gets something like: { number: 1, content: '$ bundle install' } Such approach is required to handle cases where data coming from pusher is not actually a new line. For example output containing dots from tests needs to be appended: $ rake .... Such output could be sent to client in 2 chunks: "$ rake\n.." and "..". In such situation we would need to send 3 instructions: { number: 1, content: '$ rake' } { number: 2, content: '..' } { number: 2, content: '..', append: true } The third instruction can come much later, because tests can take a while to run, so we can't assume that each line will come in one piece. The other scenario is \r, for example when showing progress: \rDownloading: 10% \rDownloading: 50% \rDownloading: 100% Such input should be changed into such instructions: { number: 1, content: 'Downloading: 10%' } { number: 1, content: 'Downloading: 50%', replace: true } { number: 1, content: 'Downloading: 100%', replace: true } Travis.Log also supports folds, for example on bundle install, the code was rewritten to make folds management simpler.
93 lines
1.8 KiB
Plaintext
93 lines
1.8 KiB
Plaintext
$: << 'lib'
|
|
|
|
require 'rake-pipeline-web-filters'
|
|
require 'rake-pipeline-i18n-filters'
|
|
require 'travis/assets'
|
|
require 'compass'
|
|
|
|
Encoding.default_external = Encoding::UTF_8
|
|
Encoding.default_internal = Encoding::UTF_8
|
|
|
|
assets ||= Travis::Assets.new
|
|
assets.setup_compass
|
|
assets.update_version
|
|
|
|
output 'assets/scripts/config'
|
|
input 'locales' do
|
|
match '**/*.yml' do
|
|
i18n_js { 'locales.js' }
|
|
end
|
|
end
|
|
|
|
output 'public/scripts'
|
|
input assets.scripts do
|
|
match '**/*.hbs' do
|
|
travis_handlebars :precompile => assets.production?
|
|
concat 'templates.js'
|
|
end
|
|
|
|
match '**/*.coffee' do
|
|
coffee_script
|
|
end
|
|
|
|
match 'vendor/**/*.js' do
|
|
safe_concat assets.vendor_order, 'vendor.js'
|
|
end
|
|
|
|
match '{spec,spec/unit,spec/unit/views}/*.js' do
|
|
concat 'spec/specs.js'
|
|
end
|
|
|
|
match 'spec/support/*.js' do
|
|
concat 'spec/support.js'
|
|
end
|
|
|
|
match 'spec/vendor/*.js' do
|
|
concat assets.spec_vendor_order, 'spec/vendor.js'
|
|
end
|
|
|
|
match 'spec/{vendor,support,specs}.js' do
|
|
concat ['spec/vendor.js', 'spec/support.js', 'spec/specs.js'], 'specs.js'
|
|
end
|
|
|
|
match %r(^(?!vendor|spec).*\.js$) do
|
|
modules = proc { |input| input.path.gsub(%r((^app/|lib/|\.js$)), '') }
|
|
minispade(string: assets.development?, rewrite_requires: true, module_id_generator: modules)
|
|
end
|
|
|
|
match %r(^(?!spec).*\.js$) do
|
|
concat ['vendor.js'], ['app.js', 'min/app.js']
|
|
end
|
|
|
|
if assets.production?
|
|
match 'min/app.js' do
|
|
strip_debug
|
|
uglify squeeze: true
|
|
concat 'app.min.js'
|
|
end
|
|
end
|
|
end
|
|
|
|
output 'public/styles'
|
|
input assets.styles do
|
|
match '**/*.{scss,sass}' do
|
|
sass
|
|
concat [], 'app.css'
|
|
end
|
|
end
|
|
|
|
output 'public/images'
|
|
input assets.images do
|
|
skip %r(^ui/)
|
|
match '**/*' do
|
|
copy
|
|
end
|
|
end
|
|
|
|
# output 'public'
|
|
# input assets.static do
|
|
# match '**/*' do
|
|
# copy
|
|
# end
|
|
# end
|