Module: Kettle::Dev::Tasks::CITask
- Defined in:
- lib/kettle/dev/tasks/ci_task.rb
Class Method Summary collapse
-
.abort(msg) ⇒ Object
Local abort indirection to enable mocking via ExitAdapter.
-
.act(opt = nil) ⇒ Object
Runs
act
for a selected workflow.
Class Method Details
.abort(msg) ⇒ Object
Local abort indirection to enable mocking via ExitAdapter
18 19 20 |
# File 'lib/kettle/dev/tasks/ci_task.rb', line 18 def abort(msg) Kettle::Dev::ExitAdapter.abort(msg) end |
.act(opt = nil) ⇒ Object
Runs act
for a selected workflow. Option can be a short code or workflow basename.
Mirrors the behavior previously implemented in the ci:act rake task.
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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
# File 'lib/kettle/dev/tasks/ci_task.rb', line 26 def act(opt = nil) require "io/console" choice = opt&.strip root_dir = Kettle::Dev::CIHelpers.project_root workflows_dir = File.join(root_dir, ".github", "workflows") # Build mapping dynamically from workflow files; short code = first three letters of filename stem mapping = {} existing_files = if Dir.exist?(workflows_dir) Dir[File.join(workflows_dir, "*.yml")] + Dir[File.join(workflows_dir, "*.yaml")] else [] end existing_basenames = existing_files.map { |p| File.basename(p) } exclusions = Kettle::Dev::CIHelpers.exclusions candidate_files = existing_basenames.uniq - exclusions candidate_files.sort.each do |fname| stem = fname.sub(/\.(ya?ml)\z/, "") code = stem[0, 3].to_s.downcase next if code.empty? mapping[code] ||= fname end dynamic_files = candidate_files - mapping.values display_code_for = {} mapping.keys.each { |k| display_code_for[k] = k } dynamic_files.each { |f| display_code_for[f] = "" } status_emoji = proc do |status, conclusion| case status when "queued" then "⏳️" when "in_progress" then "👟" when "completed" then ((conclusion == "success") ? "✅" : "🍅") else "⏳️" end end fetch_and_print_status = proc do |workflow_file| branch = Kettle::Dev::CIHelpers.current_branch org_repo = Kettle::Dev::CIHelpers.repo_info unless branch && org_repo puts "GHA status: (skipped; missing git branch or remote)" next end owner, repo = org_repo uri = URI("https://api.github.com/repos/#{owner}/#{repo}/actions/workflows/#{workflow_file}/runs?branch=#{URI.encode_www_form_component(branch)}&per_page=1") req = Net::HTTP::Get.new(uri) req["User-Agent"] = "ci:act rake task" token = Kettle::Dev::CIHelpers.default_token req["Authorization"] = "token #{token}" if token && !token.empty? begin res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) } if res.is_a?(Net::HTTPSuccess) data = JSON.parse(res.body) run = data["workflow_runs"]&.first if run status = run["status"] conclusion = run["conclusion"] emoji = status_emoji.call(status, conclusion) details = [status, conclusion].compact.join("/") puts "Latest GHA (#{branch}) for #{workflow_file}: #{emoji} (#{details})" else puts "Latest GHA (#{branch}) for #{workflow_file}: none" end else puts "GHA status: request failed (#{res.code})" end rescue StandardError => e puts "GHA status: error #{e.class}: #{e.}" end end run_act_for = proc do |file_path| ok = system("act", "-W", file_path) abort("ci:act failed: 'act' command not found or exited with failure") unless ok end if choice && !choice.empty? file = if mapping.key?(choice) mapping.fetch(choice) elsif !!(/\.(yml|yaml)\z/ =~ choice) choice else cand_yml = File.join(workflows_dir, "#{choice}.yml") cand_yaml = File.join(workflows_dir, "#{choice}.yaml") if File.file?(cand_yml) "#{choice}.yml" elsif File.file?(cand_yaml) "#{choice}.yaml" else "#{choice}.yml" end end file_path = File.join(workflows_dir, file) unless File.file?(file_path) puts "Unknown option or missing workflow file: #{choice} -> #{file}" puts "Available options:" mapping.each { |k, v| puts " #{k.ljust(3)} => #{v}" } unless dynamic_files.empty? puts " (others) =>" dynamic_files.each { |v| puts " #{v}" } end abort("ci:act aborted") end fetch_and_print_status.call(file) run_act_for.call(file_path) # After running locally, check upstream GitLab pipeline status if configured begin require "kettle/dev/ci_monitor" Kettle::Dev::CIMonitor.monitor_gitlab!(restart_hint: "bundle exec rake ci:act") rescue LoadError # ignore if not available end return end # Interactive menu require "thread" tty = $stdout.tty? = mapping.to_a + dynamic_files.map { |f| [f, f] } quit_code = "q" = + [[quit_code, "(quit)"]] idx_by_code = {} .each_with_index { |(k, _v), i| idx_by_code[k] = i } branch = Kettle::Dev::CIHelpers.current_branch org = Kettle::Dev::CIHelpers.repo_info owner, repo = org if org token = Kettle::Dev::CIHelpers.default_token upstream = begin out, status = Open3.capture2("git", "rev-parse", "--abbrev-ref", "--symbolic-full-name", "@{u}") status.success? ? out.strip : nil rescue StandardError nil end sha = begin out, status = Open3.capture2("git", "rev-parse", "--short", "HEAD") status.success? ? out.strip : nil rescue StandardError nil end if org && branch puts "Repo: #{owner}/#{repo}" elsif org puts "Repo: #{owner}/#{repo}" else puts "Repo: n/a" end puts "Upstream: #{upstream || "n/a"}" puts "HEAD: #{sha || "n/a"}" puts puts "Select a workflow to run with 'act':" placeholder = "[…]" .each_with_index do |(k, v), idx| status_col = (k == quit_code) ? "" : placeholder disp = (k == quit_code) ? k : display_code_for[k] line = format("%2d) %-3s => %-20s %s", idx + 1, disp, v, status_col) puts line end puts "(Fetching latest GHA status for branch #{branch || "n/a"} — you can type your choice and press Enter)" prompt = "Enter number or code (or 'q' to quit): " print(prompt) $stdout.flush # We need to sleep a bit here to ensure the terminal is ready for both # input and writing status updates to each workflow's line sleep(0.2) unless Kettle::Dev::IS_CI selected = nil input_thread = Thread.new do begin selected = Kettle::Dev::InputAdapter.gets&.strip rescue Exception => error # Catch all exceptions in background thread, including SystemExit # NOTE: look into refactoring to minimize potential SystemExit. puts "Error in background thread: #{error.class}: #{error.}" if Kettle::Dev::DEBUGGING selected = nil end end status_q = Queue.new workers = [] start_at = Process.clock_gettime(Process::CLOCK_MONOTONIC) .each do |code, file| workers << Thread.new(code, file, owner, repo, branch, token, start_at) do |c, f, ow, rp, br, tk, st_at| begin now = Process.clock_gettime(Process::CLOCK_MONOTONIC) delay = 0.12 - (now - st_at) sleep(delay) if delay && delay > 0 if ow.nil? || rp.nil? || br.nil? status_q << [c, f, "n/a"] Thread.exit end uri = URI("https://api.github.com/repos/#{ow}/#{rp}/actions/workflows/#{f}/runs?branch=#{URI.encode_www_form_component(br)}&per_page=1") poll_interval = Integer(ENV["CI_ACT_POLL_INTERVAL"] || 5) loop do begin req = Net::HTTP::Get.new(uri) req["User-Agent"] = "ci:act rake task" req["Authorization"] = "token #{tk}" if tk && !tk.empty? res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) } if res.is_a?(Net::HTTPSuccess) data = JSON.parse(res.body) run = data["workflow_runs"]&.first if run st = run["status"] con = run["conclusion"] emoji = case st when "queued" then "⏳️" when "in_progress" then "👟" when "completed" then ((con == "success") ? "✅" : "🍅") else "⏳️" end details = [st, con].compact.join("/") status_q << [c, f, "#{emoji} (#{details})"] break if st == "completed" else status_q << [c, f, "none"] break end else status_q << [c, f, "fail #{res.code}"] end rescue Exception # Catch all exceptions to prevent crashing the process from a worker thread status_q << [c, f, "err"] end sleep(poll_interval) end rescue Exception # :nocov: # Catch all exceptions in the worker thread boundary, including SystemExit status_q << [c, f, "err"] # :nocov: end end end statuses = Hash.new(placeholder) loop do if selected break end begin code, file_name, display = status_q.pop(true) statuses[code] = display if tty idx = idx_by_code[code] if idx.nil? puts "status #{code}: #{display}" print(prompt) else move_up = .size - idx + 1 $stdout.print("\e[#{move_up}A\r\e[2K") disp = (code == quit_code) ? code : display_code_for[code] $stdout.print(format("%2d) %-3s => %-20s %s\n", idx + 1, disp, file_name, display)) $stdout.print("\e[#{move_up - 1}B\r") $stdout.print(prompt) end $stdout.flush else puts "status #{code}: #{display}" end rescue ThreadError sleep(0.05) end end begin workers.each { |t| t.kill if t&.alive? } rescue StandardError end begin input_thread.kill if input_thread&.alive? rescue StandardError end input = selected abort("ci:act aborted: no selection") if input.nil? || input.empty? chosen_file = nil if !!(/^\d+$/ =~ input) idx = input.to_i - 1 if idx < 0 || idx >= .length abort("ci:act aborted: invalid selection #{input}") end code, val = [idx] if code == quit_code puts "ci:act: quit" return else chosen_file = val end else code = input if ["q", "quit", "exit"].include?(code.downcase) puts "ci:act: quit" return end chosen_file = mapping[code] abort("ci:act aborted: unknown code '#{code}'") unless chosen_file end file_path = File.join(workflows_dir, chosen_file) abort("ci:act aborted: workflow not found: #{file_path}") unless File.file?(file_path) fetch_and_print_status.call(chosen_file) run_act_for.call(file_path) # After running locally, check upstream GitLab pipeline status if configured begin require "kettle/dev/ci_monitor" Kettle::Dev::CIMonitor.monitor_gitlab!(restart_hint: "bundle exec rake ci:act") rescue LoadError # ignore if not available end end |