-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.rb
112 lines (85 loc) · 4.42 KB
/
build.rb
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
####################################################################################################
# Build Instant Eyedropper
require 'FileUtils'
require 'colored'
$debug = false
####################################################################################################
$currentdir = File.expand_path(File.dirname(__FILE__))
$tmp = ENV["tmp"]
$progs = ENV["progs"]
$vs = ENV["vs"]
$version = false
$eyeproject = "#{$currentdir}"
$devenv = "#{$vs}/Common7/IDE/devenv.com";
$solution = "#{$eyeproject}/vsproject/instanteyedropper.sln";
$inno = "#{$progs}/Inno Setup 5/ISCC.exe";
$innoscript = "#{$eyeproject}/makeinstaller.iss";
$sevenz = "#{$progs}/7Zip/7z.exe";
$zipname = "instant-eyedropper"
$newdir = "#{$tmp}/#{$zipname}"
# добавляет кавычки к строке #######################################################################
class String; def addq; "\"#{self}\""; end; end
####################################################################################################
# запуск внешней команды с сохранением вывода ######################################################
# если в выводе попадется true_pattern, то возращаем его индекс
def sysrun(command, true_patterns, debug)
# запустить и считать вывод
#show_wait_spinner ['green!', 30] {
$lines = IO.popen(command + " 2>&1").readlines.join.split("\n") #}
# если включен режим дебага, то вывести все на экран
if debug
puts # декоративный отступ
puts "\t" + "command: ".bold.black + command.to_s.green
puts "\t" + "true patterns: ".bold.black + true_patterns.to_s.yellow
$lines.each { |line| puts "\t" + line.to_s.cyan }
end
# в случае если есть пустой паттерн соответствия, но также пустой вывод - возвращаем тру
true_patterns.each { |pattern| return 0 if (pattern.empty? && $lines.empty?) }
true_patterns.delete("") # удаляем пустые паттерны, чтобы следующая проверка не заглючила
# пройтись по строкам и паттернам
$lines.each do |line|
true_patterns.each_with_index { |pattern, indx| return indx if (line.match pattern) }
end
return false
end
# добавляет кавычки к строке
class String; def addq; "\"#{self}\""; end; end
####################################################################################################
# verbose
if ARGV[0].eql?("debug") then $debug = true end
# узнать текущую версию
version_regexp = Regexp.new '(\d+\.\d+\.\d+\.\d+)'
vlines = IO.popen("ruby version.rb").readlines.join.split("\n")
vlines.each do |line| if( m = line.match version_regexp ) then $version = m[1]; break end end
if $version
$version.gsub!( /\.\d+$/, '')
# скомпилить проект
@command = "#{$devenv} #{$solution.addq} /Rebuild Release"
if sysrun(@command, ["Rebuild All: 1 succeeded"], $debug)
if $debug then puts "\t" + "ok".bold.green
else puts "\t" + "compile project: " + "ok".bold.green end
else
puts "\t" + "compilation no ok".bold.red; exit
end
# собрать инсталлятор
@command = "#{$inno.addq} #{$innoscript.addq}"
if sysrun(@command, ["Successful compile"], $debug)
if $debug then puts "\t" + "ok".bold.green
else puts "\t" + "build installer: " + "ok".bold.green end
else
puts "\t" + "building installer failed".bold.red; exit
end
# собрать zip
$src = "#{$currentdir}/vsproject/output"
$zip = $zipname + '-' + $version + '.zip'
FileUtils.rm($zip) if File.exist?($zip)
FileUtils.cp_r $src, $newdir
@command = "#{$sevenz.addq} -tzip a #{$zip} #{$newdir}";
if sysrun(@command, ["Everything is Ok"], $debug)
if $debug then puts "\t" + "ok".bold.green
else puts "\t" + "make zip: " + "ok".bold.green end
else
puts "\t" + "zip won't create".bold.red; exit
end
FileUtils.rm_rf($newdir) if File.exist?($newdir)
end