This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Rakefile
92 lines (75 loc) · 2.96 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
RAKE_ROOT = File.expand_path(File.dirname(__FILE__))
specdir = File.join([File.dirname(__FILE__), "spec"])
require 'rake'
begin
require 'rspec/core/rake_task'
require 'mcollective'
rescue LoadError
end
begin
load File.join(RAKE_ROOT, 'ext', 'packaging.rake')
rescue LoadError
end
def safe_system *args
raise RuntimeError, "Failed: #{args.join(' ')}" unless system *args
end
def check_build_env
raise "Not all environment variables have been set. Missing #{{"'DESTDIR'" => ENV["DESTDIR"], "'MCLIBDIR'" => ENV["MCLIBDIR"], "'MCBINDIR'" => ENV["MCBINDIR"], "'TARGETDIR'" => ENV["TARGETDIR"]}.reject{|k,v| v != nil}.keys.join(", ")}" unless ENV["DESTDIR"] && ENV["MCLIBDIR"] && ENV["MCBINDIR"] && ENV["TARGETDIR"]
raise "DESTDIR - '#{ENV["DESTDIR"]}' is not a directory" unless File.directory?(ENV["DESTDIR"])
raise "MCLIBDIR - '#{ENV["MCLIBDIR"]}' is not a directory" unless File.directory?(ENV["MCLIBDIR"])
raise "MCBINDIR - '#{ENV["MCBINDIR"]}' is not a directory" unless File.directory?(ENV["MCBINDIR"])
raise "TARGETDIR - '#{ENV["TARGETDIR"]}' is not a directory" unless File.directory?(ENV["TARGETDIR"])
end
def build_package(path)
require 'yaml'
options = []
if File.directory?(path)
buildops = File.join(path, "buildops.yaml")
buildops = YAML.load_file(buildops) if File.exists?(buildops)
return unless buildops["build"]
libdir = ENV["LIBDIR"] || buildops["mclibdir"]
mcname = ENV["MCNAME"] || buildops["mcname"]
sign = ENV["SIGN"] || buildops["sign"]
options << "--pluginpath=#{libdir}" if libdir
options << "--mcname=#{mcname}" if mcname
options << "--sign" if sign
options << "--dependency=\"#{buildops["dependencies"].join(" ")}\"" if buildops["dependencies"]
safe_system("ruby -I #{File.join(ENV["MCLIBDIR"], "lib").shellescape} #{File.join(ENV["MCBINDIR"], "mco").shellescape} plugin package -v #{path.shellescape} #{options.join(" ")}")
move_artifacts
end
end
def move_artifacts
rpms = FileList["*.rpm"]
debs = FileList["*.deb","*.orig.tar.gz","*.debian.tar.gz","*.diff.gz","*.dsc","*.changes"]
[debs,rpms].each do |pkgs|
unless pkgs.empty?
safe_system("mv #{pkgs} #{ENV["DESTDIR"]}") unless File.expand_path(ENV["DESTDIR"]) == Dir.pwd
end
end
end
desc "Build packages for specified plugin in target directory"
task :buildplugin do
check_build_env
build_package(ENV["TARGETDIR"])
end
desc "Build packages for all plugins in target directory"
task :build do
check_build_env
packages = Dir.glob(File.join(ENV["TARGETDIR"], "*"))
packages.each do |package|
if File.directory?(File.expand_path(package))
build_package(File.expand_path(package))
end
end
end
desc "Run agent and application tests"
task :test do
require "#{specdir}/spec_helper.rb"
if ENV["TARGETDIR"]
test_pattern = "#{File.expand_path(ENV["TARGETDIR"])}/spec/**/*_spec.rb"
else
test_pattern = 'spec/**/*_spec.rb'
end
sh "rspec #{Dir.glob(test_pattern).sort.join(' ')}"
end
task :default => :test