makit 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.makit.project.json +4 -0
- data/.makit.project.yml +2 -0
- data/.rubocop.yml +22 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +8 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/LICENSE +21 -0
- data/README.md +119 -0
- data/Rakefile +190 -0
- data/docs/Commands.md +50 -0
- data/docs_/Commands.md +166 -0
- data/docs_/Minitest.Timeouts.md +332 -0
- data/examples/protoc/Rakefile +31 -0
- data/examples/rake_default/Rakefile +5 -0
- data/examples/rubygem-foo/.gitkeep +0 -0
- data/examples/rubygem-foo/Rakefile +3 -0
- data/examples/run_mp/Rakefile +8 -0
- data/exe/makit +5 -0
- data/lib/makit/apache.rb +32 -0
- data/lib/makit/cli/clean.rb +14 -0
- data/lib/makit/cli/clone.rb +59 -0
- data/lib/makit/cli/init.rb +38 -0
- data/lib/makit/cli/main.rb +33 -0
- data/lib/makit/cli/make.rb +54 -0
- data/lib/makit/cli/new.rb +37 -0
- data/lib/makit/cli/nuget_cache.rb +38 -0
- data/lib/makit/cli/pull.rb +31 -0
- data/lib/makit/cli/setup.rb +71 -0
- data/lib/makit/cli/work.rb +21 -0
- data/lib/makit/command_runner.rb +237 -0
- data/lib/makit/commands.rb +21 -0
- data/lib/makit/content/default_gitignore.rb +5 -0
- data/lib/makit/content/default_gitignore.txt +222 -0
- data/lib/makit/content/default_rakefile.rb +11 -0
- data/lib/makit/content/gem_rakefile.rb +14 -0
- data/lib/makit/content/ruby_gitlab-ci.yml +15 -0
- data/lib/makit/data.rb +50 -0
- data/lib/makit/directories.rb +140 -0
- data/lib/makit/directory.rb +120 -0
- data/lib/makit/dotnet.rb +16 -0
- data/lib/makit/environment.rb +123 -0
- data/lib/makit/files.rb +47 -0
- data/lib/makit/git.rb +66 -0
- data/lib/makit/gitlab_runner.rb +60 -0
- data/lib/makit/humanize.rb +89 -0
- data/lib/makit/logging.rb +96 -0
- data/lib/makit/markdown.rb +75 -0
- data/lib/makit/mp/basic_object_mp.rb +16 -0
- data/lib/makit/mp/project_mp.rb +160 -0
- data/lib/makit/mp/string_mp.rb +101 -0
- data/lib/makit/nuget.rb +57 -0
- data/lib/makit/protoc.rb +61 -0
- data/lib/makit/serializer.rb +70 -0
- data/lib/makit/storage.rb +131 -0
- data/lib/makit/symbols.rb +149 -0
- data/lib/makit/tasks.rb +63 -0
- data/lib/makit/tree.rb +37 -0
- data/lib/makit/v1/makit.v1.proto +103 -0
- data/lib/makit/v1/makit.v1_pb.rb +30 -0
- data/lib/makit/v1/makit.v1_services_pb.rb +26 -0
- data/lib/makit/version.rb +12 -0
- data/lib/makit/wix.rb +92 -0
- data/lib/makit/zip.rb +17 -0
- data/lib/makit.rb +243 -0
- data/makit.generated.sln +30 -0
- data/makit.sln +69 -0
- data/pages/.gitignore +5 -0
- data/pages/404.html +25 -0
- data/pages/Gemfile +33 -0
- data/pages/Gemfile.lock +88 -0
- data/pages/_config.yml +55 -0
- data/pages/_layouts/default.html +1 -0
- data/pages/_posts/2024-10-05-welcome-to-jekyll.markdown +29 -0
- data/pages/about.markdown +18 -0
- data/pages/index.markdown +6 -0
- data/sig/makit.rbs +4 -0
- data/src/ClassLib/Class1.cs +6 -0
- data/src/ClassLib/ClassLib.csproj +13 -0
- metadata +251 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "sorted_set"
|
4
|
+
require_relative "directory"
|
5
|
+
# This module provides classes for the Makit gem.
|
6
|
+
module Makit
|
7
|
+
# This class provide methods for working with the system Environment.
|
8
|
+
#
|
9
|
+
class Environment
|
10
|
+
def self.which(name)
|
11
|
+
return name if File.exist?(name)
|
12
|
+
|
13
|
+
["", ".exe", ".bat", ".cmd"].each do |ext|
|
14
|
+
aname = name + ext
|
15
|
+
return aname if File.exist?(aname)
|
16
|
+
|
17
|
+
ENV["PATH"].split(File::PATH_SEPARATOR).each do |path|
|
18
|
+
apath = "#{path.gsub("\\", "/")}/#{aname}".gsub("//", "/")
|
19
|
+
return apath if File.exist?(apath)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
""
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.constants_hash
|
26
|
+
constants = {}
|
27
|
+
# collect all constants that are all uppercase
|
28
|
+
Object.constants.each { |c| constants[c] = Object.const_get(c) if c == c.upcase } # puts "#{c} = #{Object.const_get(c)}" }
|
29
|
+
#Object.constants.each { |c| constants[c] = Object.const_get(c)}# puts "#{c} = #{Object.const_get(c)}" }
|
30
|
+
constants
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.rake_file_name
|
34
|
+
caller_locations.each do |location|
|
35
|
+
return location.absolute_path if location.absolute_path&.end_with?("Rakefile")
|
36
|
+
end
|
37
|
+
nil
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.gem_data_directory
|
41
|
+
gem_data_directory = File.join(Dir.home, ".makit")
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.project_root_directory
|
45
|
+
if !Makit::Environment.rake_file_name.nil?
|
46
|
+
File.dirname(Makit::Environment.rake_file_name)
|
47
|
+
else
|
48
|
+
Makit::Directory.find_directory_with_pattern(File.dirname(__FILE__), "Rakefile")
|
49
|
+
# lass Directory
|
50
|
+
# def self.find_directory_with_pattern(starting_directory, pattern)
|
51
|
+
# nil
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.get_relative_directory(url)
|
56
|
+
url = url.gsub("https://", "").gsub("http://", "")
|
57
|
+
url = url.gsub("gitlab.com", "gitlab")
|
58
|
+
url
|
59
|
+
end
|
60
|
+
|
61
|
+
def self.get_code_root
|
62
|
+
# user home directory + "code"
|
63
|
+
code_root = File.join(Dir.home, "code")
|
64
|
+
end
|
65
|
+
|
66
|
+
def self.get_work_directory(url)
|
67
|
+
raise "invalid url" if !url.include? "https://"
|
68
|
+
url = url.gsub("https://", "").gsub("http://", "")
|
69
|
+
#url = url.gsub("gitlab.com","gitlab")
|
70
|
+
url
|
71
|
+
end
|
72
|
+
|
73
|
+
def self.is_windows?
|
74
|
+
RbConfig::CONFIG["host_os"] =~ /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
75
|
+
end
|
76
|
+
|
77
|
+
def self.get_os
|
78
|
+
case RbConfig::CONFIG["host_os"]
|
79
|
+
when /linux/
|
80
|
+
"Linux"
|
81
|
+
when /darwin/
|
82
|
+
"macOS"
|
83
|
+
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
84
|
+
"Windows"
|
85
|
+
else
|
86
|
+
"Unknown"
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def self.get_runtime_identifier()
|
91
|
+
os = RbConfig::CONFIG["host_os"]
|
92
|
+
cpu = RbConfig::CONFIG["host_cpu"]
|
93
|
+
|
94
|
+
case os
|
95
|
+
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
96
|
+
os_rid = "win"
|
97
|
+
when /darwin|mac os/
|
98
|
+
os_rid = "osx"
|
99
|
+
when /linux/
|
100
|
+
os_rid = "linux"
|
101
|
+
when /solaris|bsd/
|
102
|
+
os_rid = "unix"
|
103
|
+
else
|
104
|
+
raise "Unknown operating system: host_os=#{os}"
|
105
|
+
end
|
106
|
+
|
107
|
+
case cpu
|
108
|
+
when /x86_64|amd64|x64/
|
109
|
+
arch_rid = "x64"
|
110
|
+
when /i686|i386/
|
111
|
+
arch_rid = "x86"
|
112
|
+
#when /arm/
|
113
|
+
# arch_rid = "arm"
|
114
|
+
when /aarch64|arm64/
|
115
|
+
arch_rid = "arm64"
|
116
|
+
else
|
117
|
+
raise "Unknown architecture: host_cpu=#{cpu}"
|
118
|
+
end
|
119
|
+
|
120
|
+
"#{os_rid}-#{arch_rid}"
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
data/lib/makit/files.rb
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "directory"
|
4
|
+
require_relative "environment"
|
5
|
+
require_relative "protoc"
|
6
|
+
require_relative "nuget"
|
7
|
+
require_relative "version"
|
8
|
+
require "rake"
|
9
|
+
|
10
|
+
# This module provides classes for the Makit gem.
|
11
|
+
module Makit
|
12
|
+
# This class provide methods for working with the system Environment.
|
13
|
+
#
|
14
|
+
module Files
|
15
|
+
if (Makit::Directories::PROJECT_ROOT != nil)
|
16
|
+
Dir.chdir(Makit::Directories::PROJECT_ROOT) do
|
17
|
+
CSPROJ = Dir.glob("**/*.csproj")
|
18
|
+
end
|
19
|
+
else
|
20
|
+
CSPROJ = Array.new
|
21
|
+
end
|
22
|
+
|
23
|
+
# show all the files constants in a nicely formatted table format with the name of the constant and the value
|
24
|
+
def self.show
|
25
|
+
# Array of constant names (symbols)
|
26
|
+
constant_names = [:CSPROJ]
|
27
|
+
|
28
|
+
# Find the length of the longest constant name and add 1
|
29
|
+
max_length = constant_names.map(&:to_s).max_by(&:length).length + 1
|
30
|
+
|
31
|
+
# Iterate through each constant name
|
32
|
+
constant_names.each do |constant_name|
|
33
|
+
begin
|
34
|
+
constant_value = const_get(constant_name) # Fetch the value of the constant
|
35
|
+
if (constant_value != nil && File.exist?(constant_value))
|
36
|
+
constant_value = constant_value.colorize(:green)
|
37
|
+
end
|
38
|
+
# Print the constant name right justified to the max_length
|
39
|
+
puts "#{constant_name.to_s.rjust(max_length)} = #{constant_value}"
|
40
|
+
rescue NameError
|
41
|
+
# Handle the case where the constant is not defined
|
42
|
+
puts "#{constant_name.to_s.rjust(max_length)} = [Constant not defined]"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end # module Files
|
47
|
+
end # module Makit
|
data/lib/makit/git.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This module provides classes for the Makit gem.
|
4
|
+
module Makit
|
5
|
+
# This class provide methods for working with the system Environment.
|
6
|
+
#
|
7
|
+
class Git
|
8
|
+
def self.is_git_repo
|
9
|
+
Dir.exist? ".git"
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.detached
|
13
|
+
`git status`.include?("detached")
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.is_read_only
|
17
|
+
!is_git_repo || detached
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.is_clean
|
21
|
+
`git status --porcelain`.empty?
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.integrate
|
25
|
+
if is_git_repo && !detached
|
26
|
+
"git add .".run
|
27
|
+
"git commit -m \"integrate\"".run unless is_clean
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.sync
|
32
|
+
if is_git_repo && !detached
|
33
|
+
"git pull".try
|
34
|
+
"git push origin".try
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.zip_source_files(zipfilename)
|
39
|
+
"git archive --format zip --output #{zipfilename} HEAD".run
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.branch
|
43
|
+
`git branch --show-current`.strip
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.commitsha
|
47
|
+
`git rev-parse HEAD`.strip
|
48
|
+
end
|
49
|
+
|
50
|
+
def self.commitmsg
|
51
|
+
`git log -1 --pretty=%B`.strip
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.commitdate
|
55
|
+
`git log -1 --pretty=%cd`.strip
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.commitauthor
|
59
|
+
`git log -1 --pretty=%an`.strip
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.commitemail
|
63
|
+
`git log -1 --pretty=%ae`.strip
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "yaml"
|
4
|
+
require "fileutils"
|
5
|
+
|
6
|
+
# This module provides classes for the Makit gem.
|
7
|
+
module Makit
|
8
|
+
# This class provide methods for working with Directories/
|
9
|
+
#
|
10
|
+
# Example:
|
11
|
+
#
|
12
|
+
# Makit::Directory.find_directory_with_pattern("/home/user", "*.rb")
|
13
|
+
#
|
14
|
+
class GitLabRunner
|
15
|
+
|
16
|
+
# Parse the .gitlab-ci.yml file
|
17
|
+
def parse_gitlab_ci_file(file_path)
|
18
|
+
YAML.load_file(file_path)
|
19
|
+
end
|
20
|
+
|
21
|
+
# Extract the script for a specified job
|
22
|
+
def extract_script(ci_config, job_name)
|
23
|
+
job = ci_config[job_name]
|
24
|
+
job ? job["script"] : nil
|
25
|
+
end
|
26
|
+
|
27
|
+
# Write the script to a temporary file
|
28
|
+
def write_script_to_file(script, file_path)
|
29
|
+
File.open(file_path, "w") do |file|
|
30
|
+
script.each { |line| file.puts(line) }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# Run the script in a Docker container
|
35
|
+
def run_script_in_docker(image, script_file)
|
36
|
+
system("docker run --rm -v #{Dir.pwd}:/workspace -w /workspace #{image} /bin/sh #{script_file}")
|
37
|
+
end
|
38
|
+
|
39
|
+
# Main function to execute the process
|
40
|
+
def run_job(ci_file_path, job_name, docker_image)
|
41
|
+
ci_config = parse_gitlab_ci_file(ci_file_path)
|
42
|
+
script = extract_script(ci_config, job_name)
|
43
|
+
|
44
|
+
unless script
|
45
|
+
puts "Job '#{job_name}' not found in #{ci_file_path}"
|
46
|
+
return
|
47
|
+
end
|
48
|
+
|
49
|
+
script_file = "temp_script.sh"
|
50
|
+
write_script_to_file(script, script_file)
|
51
|
+
FileUtils.chmod("+x", script_file)
|
52
|
+
|
53
|
+
puts "Running script in Docker container..."
|
54
|
+
run_script_in_docker(docker_image, script_file)
|
55
|
+
|
56
|
+
# Clean up the temporary script file
|
57
|
+
FileUtils.rm(script_file)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This module provides classes for the Makit gem.
|
4
|
+
module Makit
|
5
|
+
class Humanize
|
6
|
+
def self.get_humanized_size(bytes, precision = 2)
|
7
|
+
units = ["B", "KB", "MB", "GB", "TB", "PB"]
|
8
|
+
return "0 B" if bytes == 0
|
9
|
+
|
10
|
+
exp = (Math.log(bytes) / Math.log(1024)).to_i
|
11
|
+
exp = units.size - 1 if exp >= units.size
|
12
|
+
|
13
|
+
size = bytes.to_f / (1024 ** exp)
|
14
|
+
format("%.#{precision}f %s", size, units[exp])
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.get_make_result_summary(make_result)
|
18
|
+
summary = "Make Result\n"
|
19
|
+
summary += " Repository: #{make_result.repository}\n"
|
20
|
+
summary += " Commit: #{make_result.commit}\n"
|
21
|
+
summary += " Branch: #{make_result.branch}\n"
|
22
|
+
summary += " Tag: #{make_result.tag}\n"
|
23
|
+
summary += " Device: #{make_result.device}\n"
|
24
|
+
summary += " Runtime Identifier: #{make_result.runtime_identifier}\n"
|
25
|
+
summary += " Initial Size: #{get_humanized_size(make_result.initial_size)}\n"
|
26
|
+
summary += " Final Size: #{get_humanized_size(make_result.final_size)}\n"
|
27
|
+
summary += " Delta Size: #{get_humanized_size(make_result.final_size - make_result.initial_size)}\n"
|
28
|
+
summary += " Commands: (#{make_result.commands.length})\n"
|
29
|
+
make_result.commands.each do |command|
|
30
|
+
details = get_command_details(command)
|
31
|
+
summary += "\n"
|
32
|
+
summary += indent_string(details, 4)
|
33
|
+
summary += "\n"
|
34
|
+
end
|
35
|
+
|
36
|
+
summary
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.get_commands(commands)
|
40
|
+
message = ""
|
41
|
+
commands.each do |command|
|
42
|
+
message += Makit::Humanize::get_command_details(command)
|
43
|
+
end
|
44
|
+
message
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.get_command_summary(command)
|
48
|
+
symbol = Makit::Symbols.warning
|
49
|
+
symbol = Makit::Symbols.checkmark if !command.exit_code.nil? && command.exit_code.zero?
|
50
|
+
symbol = Makit::Symbols.error if command.exit_code != 0
|
51
|
+
"#{symbol} #{command.name} #{command.arguments.join(" ")}"
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.get_command_details(command)
|
55
|
+
summary = "#{get_command_summary(command)}\n"
|
56
|
+
summary += " Name: #{command.name}\n"
|
57
|
+
summary += " Arguments: #{command.arguments.join(" ")}\n"
|
58
|
+
summary += " Directory: #{command.directory}\n"
|
59
|
+
summary += " Exit Code: #{command.exit_code}\n"
|
60
|
+
if command.output.length > 0
|
61
|
+
summary += " Output:\n"
|
62
|
+
summary += indent_string(command.output, 4)
|
63
|
+
summary += "\n"
|
64
|
+
end
|
65
|
+
if command.error.length > 0
|
66
|
+
summary += " Error:\n"
|
67
|
+
summary += indent_string(command.error, 4)
|
68
|
+
summary += "\n"
|
69
|
+
end
|
70
|
+
summary
|
71
|
+
end
|
72
|
+
|
73
|
+
def self.indent_string(string, spaces)
|
74
|
+
string.split("\n").map { |line| " " * spaces + line }.join("\n")
|
75
|
+
end
|
76
|
+
|
77
|
+
def self.get_protobuf_timestamp(timestamp)
|
78
|
+
Time.at(timestamp.seconds, timestamp.nanos / 1000.0).strftime("%Y-%m-%d %H:%M:%S")
|
79
|
+
end
|
80
|
+
|
81
|
+
def self.get_protobuf_duration(duration)
|
82
|
+
total_seconds = duration.seconds + (duration.nanos / 1_000_000_000.0)
|
83
|
+
hours = (total_seconds / 3600).to_i
|
84
|
+
minutes = ((total_seconds % 3600) / 60).to_i
|
85
|
+
seconds = (total_seconds % 60).round(2)
|
86
|
+
"#{hours}h #{minutes}m #{seconds}s"
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "logger"
|
4
|
+
require "colorize"
|
5
|
+
require_relative "symbols"
|
6
|
+
|
7
|
+
# This module provides classes for the Makit gem.
|
8
|
+
module Makit
|
9
|
+
module Logging
|
10
|
+
ANSI_COLOR_REGEX = /\e\[[0-9;]*m/
|
11
|
+
|
12
|
+
class PlainFormatter < Logger::Formatter
|
13
|
+
def call(_severity, _time, _progname, msg)
|
14
|
+
stripped_msg = msg.gsub(ANSI_COLOR_REGEX, "") # Remove ANSI color codes
|
15
|
+
"#{stripped_msg}\n"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class ColorFormatter < Logger::Formatter
|
20
|
+
def call(_severity, _time, _progname, msg)
|
21
|
+
"#{msg}\n"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
# This class provide methods for working with Directories/
|
26
|
+
#
|
27
|
+
# Example:
|
28
|
+
#
|
29
|
+
# Makit::Directory.find_directory_with_pattern("/home/user", "*.rb")
|
30
|
+
#
|
31
|
+
class MultiLogger
|
32
|
+
def initialize(*targets)
|
33
|
+
@targets = targets
|
34
|
+
end
|
35
|
+
|
36
|
+
def add(severity, message = nil, progname = nil, &block)
|
37
|
+
@targets.each do |logger|
|
38
|
+
logger.add(severity, message, progname, &block)
|
39
|
+
logger.flush if logger.respond_to?(:flush)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def <<(message)
|
44
|
+
@targets.each do |logger|
|
45
|
+
logger << message
|
46
|
+
logger.flush if logger.respond_to?(:flush)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def close
|
51
|
+
@targets.each(&:close)
|
52
|
+
end
|
53
|
+
|
54
|
+
def method_missing(method, *args, &block)
|
55
|
+
@targets.each { |logger| logger.send(method, *args, &block) }
|
56
|
+
end
|
57
|
+
|
58
|
+
def respond_to_missing?(method, include_private = false)
|
59
|
+
@targets.all? { |logger| logger.respond_to?(method, include_private) }
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.create_logger
|
63
|
+
stdout_logger = Logger.new($stdout) # ColoredLogger.new(STDOUT)
|
64
|
+
stdout_logger.level = Logger::DEBUG
|
65
|
+
# Assign the custom formatter to the file_logger
|
66
|
+
stdout_logger.formatter = ColorFormatter.new
|
67
|
+
|
68
|
+
# if clean or clobber commands are used, then log ONLY to stdout
|
69
|
+
if ARGV.include?("clean") || ARGV.include?("clobber")
|
70
|
+
return stdout_logger
|
71
|
+
end
|
72
|
+
if Makit::Environment.project_root_directory.nil?
|
73
|
+
logger = stdout_logger
|
74
|
+
else
|
75
|
+
#log_filename = if ARGV.empty?
|
76
|
+
# "#{Makit::Environment.project_root_directory}/artifacts/rake.log"
|
77
|
+
# else
|
78
|
+
# "#{Makit::Environment.project_root_directory}/artifacts/rake_#{ARGV.join("_").gsub(":",
|
79
|
+
# "_")}.log"
|
80
|
+
# end
|
81
|
+
# FileUtils.remove_file(log_file) if File.exist?(log_file)
|
82
|
+
#FileUtils.mkdir_p(File.dirname(log_filename)) unless Dir.exist?(File.dirname(log_filename))
|
83
|
+
#File.open(log_filename, "w")
|
84
|
+
#file_logger = Logger.new(log_filename)
|
85
|
+
#file_logger.level = Logger::DEBUG
|
86
|
+
# Assign the custom formatter to the file_logger
|
87
|
+
#file_logger.formatter = PlainFormatter.new
|
88
|
+
#logger = MultiLogger.new(file_logger, stdout_logger)
|
89
|
+
logger = stdout_logger
|
90
|
+
end
|
91
|
+
|
92
|
+
logger
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "humanize"
|
4
|
+
|
5
|
+
# This module provides classes for the Makit gem.
|
6
|
+
module Makit
|
7
|
+
class Markdown
|
8
|
+
def self.get_commands_markdown(commands)
|
9
|
+
summary = ""
|
10
|
+
commands.each do |command|
|
11
|
+
md = Makit::Markdown.get_command_markdown(command)
|
12
|
+
summary += md
|
13
|
+
end
|
14
|
+
summary
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.get_command_markdown(command)
|
18
|
+
md = "<details>\n"
|
19
|
+
md += "<summary>#{Makit::Humanize::get_command_summary(command)}</summary>\n\n"
|
20
|
+
|
21
|
+
if command.output.length > 0
|
22
|
+
md += "<table><tr><th>output</th></tr><tr><td>\n\n" #<pre>\n"
|
23
|
+
md += "```shell\n"
|
24
|
+
md += "#{command.output}\n"
|
25
|
+
md += "```\n\n"
|
26
|
+
md += "</td></tr></table>\n\n"
|
27
|
+
#md += "output:\n"
|
28
|
+
#md += "```shell\n"
|
29
|
+
#md += "#{command.output}\n"
|
30
|
+
#md += "```\n\n"
|
31
|
+
end
|
32
|
+
if command.error.length > 0
|
33
|
+
md += "error:\n"
|
34
|
+
md += "```shell\n"
|
35
|
+
md += "#{command.error}\n"
|
36
|
+
md += "```\n\n"
|
37
|
+
end
|
38
|
+
md += "| exit code | started at | duration | user | device | os | directory |\n"
|
39
|
+
md += "| --- | --- | --- | --- | --- | --- | --- |\n"
|
40
|
+
md += "| #{command.exit_code} | #{Makit::Humanize::get_protobuf_timestamp(command.started_at)} | #{Makit::Humanize::get_protobuf_duration(command.duration)} | #{command.user} | #{command.device} | #{command.os} | #{command.directory} |\n"
|
41
|
+
|
42
|
+
#md += "| Name | Value |\n"
|
43
|
+
#md += "| --- | --- |\n"
|
44
|
+
#md += "| exit code | #{command.exit_code} |\n"
|
45
|
+
#md += "| started at | #{Makit::Humanize::get_protobuf_timestamp(command.started_at)} |\n"
|
46
|
+
#md += "| duration | #{Makit::Humanize::get_protobuf_duration(command.duration)} |\n"
|
47
|
+
#md += "| user | #{command.user} |\n"
|
48
|
+
#md += "| device | #{command.device} |\n"
|
49
|
+
#md += "| os | #{command.os} |\n"
|
50
|
+
#md += "| directory | #{command.directory} |\n"
|
51
|
+
md += "</details>\n"
|
52
|
+
md
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.get_make_result_markdown(make_result)
|
56
|
+
md = "# Make Result\n"
|
57
|
+
# display allow of the fields of the MakeResult message
|
58
|
+
md += "| Name | Value |\n"
|
59
|
+
md += "| --- | --- |\n"
|
60
|
+
md += "| repository | #{make_result.repository} |\n"
|
61
|
+
md += "| commit | #{make_result.commit} |\n"
|
62
|
+
md += "| branch | #{make_result.branch} |\n"
|
63
|
+
md += "| tag | #{make_result.tag} |\n"
|
64
|
+
md += "| device | #{make_result.device} |\n"
|
65
|
+
md += "| runtime identifier | #{make_result.runtime_identifier} |\n"
|
66
|
+
md += "| initial size | #{make_result.initial_size} |\n"
|
67
|
+
md += "| final size | #{make_result.final_size} |\n"
|
68
|
+
md += "\n"
|
69
|
+
md += "## Commands\n"
|
70
|
+
make_result.commands.each do |command|
|
71
|
+
md += Makit::Markdown.get_command_markdown(command)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require "json"
|
3
|
+
require "yaml"
|
4
|
+
|
5
|
+
# monkey patch String class with a run method
|
6
|
+
|
7
|
+
class BasicObject
|
8
|
+
def to_json
|
9
|
+
self.to_json
|
10
|
+
end
|
11
|
+
|
12
|
+
def to_pretty_json
|
13
|
+
json = self.to_json
|
14
|
+
::JSON.pretty_generate(::JSON.parse(json))
|
15
|
+
end
|
16
|
+
end # class BasicObject
|