selective-ruby-core 0.1.3-x86_64-darwin → 0.1.4-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 768c13ee1e2c74fe8909abdb4cf2193402e16bea564c42cb040d3d97ca096738
4
- data.tar.gz: d6f01be1d6bababc38807173b73ca4f77f329deca59f3c65d4be3b1458c24c56
3
+ metadata.gz: 3b804fafa6a74937094d9db0ceef94c23c00d25c1b86434326f6cbf9d16794ae
4
+ data.tar.gz: 1d44b1a5aab3c8c2c2c47682d32dab1f66e360bdb53a1b94bc147137de9b85a3
5
5
  SHA512:
6
- metadata.gz: 394cd0376b4ca2298917828d179fd82f373a49c0a147a1bc4ba06e630aacffc90518d13afd7ee0c886229d2502393e1980e35c40bc2772f35069ba065f61f686
7
- data.tar.gz: 14bb3272aa4d945afff46647c3a8f63b464b83ced81f6ede396c58e944a3299cf0c265923132721a5d44700e4b03cd0997bd577c694a5e42e8b31552ba771f2b
6
+ metadata.gz: 4b14e06eeff150dd1240894af5f2d94342664d817b9f4e6c6d6507b966cb4617330d64a4193fa680d07ad847b867757487f7e2844878b6d2965b89a86c1ff76e
7
+ data.tar.gz: 4cf8e3503bb17eff51f6637329c9a86677e26b56e5b8808f7e9da949b58ff7a92b3975748ed0adfae753e5d4b9fd19e364c2150ec8fa5df9ce9b43dc9aca3ef6
data/lib/bin/build_env.sh CHANGED
@@ -4,13 +4,13 @@
4
4
  if [ -n "$GITHUB_ACTIONS" ]; then
5
5
  # Get environment variables
6
6
  platform=github_actions
7
- branch=${GITHUB_HEAD_REF:-$GITHUB_REF_NAME}
7
+ branch=${SELECTIVE_BRANCH:-${GITHUB_HEAD_REF:-$GITHUB_REF_NAME}}
8
8
  pr_title=$SELECTIVE_PR_TITLE
9
- target_branch=${GITHUB_BASE_REF}
9
+ target_branch=${SELECTIVE_TARGET_BRANCH:-$GITHUB_BASE_REF}
10
10
  actor=$GITHUB_ACTOR
11
- sha=$GITHUB_SHA
12
- run_id=$GITHUB_RUN_ID
13
- run_attempt=$GITHUB_RUN_ATTEMPT
11
+ sha=${SELECTIVE_SHA:-$GITHUB_SHA}
12
+ run_id=${SELECTIVE_RUN_ID:-$GITHUB_RUN_ID}
13
+ run_attempt=${SELECTIVE_RUN_ATTEMPT:-$GITHUB_RUN_ATTEMPT}
14
14
  commit_message=$(git log --format=%s -n 1 $sha)
15
15
  else
16
16
  platform=$SELECTIVE_PLATFORM
@@ -14,7 +14,7 @@ module Selective
14
14
  @debug = debug
15
15
  @runner = runner
16
16
  @retries = 0
17
- @runner_id = ENV.fetch("SELECTIVE_RUNNER_ID", generate_runner_id)
17
+ @runner_id = safe_filename(ENV.fetch("SELECTIVE_RUNNER_ID", generate_runner_id))
18
18
  @logger = init_logger(log)
19
19
  end
20
20
 
@@ -23,6 +23,7 @@ module Selective
23
23
  @transport_pid = spawn_transport_process(reconnect ? transport_url + "&reconnect=true" : transport_url)
24
24
 
25
25
  handle_termination_signals(transport_pid)
26
+ wait_for_connectivity
26
27
  run_main_loop
27
28
  rescue NamedPipe::PipeClosedError
28
29
  retry!
@@ -66,8 +67,6 @@ module Selective
66
67
  def run_main_loop
67
68
  loop do
68
69
  message = pipe.read
69
- next sleep(0.1) if message.nil? || message.empty?
70
-
71
70
  response = JSON.parse(message, symbolize_names: true)
72
71
 
73
72
  @logger.info("Received Command: #{response}")
@@ -153,6 +152,31 @@ module Selective
153
152
  end
154
153
  end
155
154
 
155
+ def wait_for_connectivity
156
+ @connectivity = false
157
+
158
+ Thread.new do
159
+ sleep(5)
160
+ unless @connectivity
161
+ puts "Transport process failed to start. Exiting..."
162
+ kill_transport
163
+ exit(1)
164
+ end
165
+ end
166
+
167
+ loop do
168
+ message = pipe.read
169
+
170
+ # The message is nil until the transport opens the pipe
171
+ # for writing. So, we must handle that here.
172
+ next sleep(0.1) if message.nil?
173
+
174
+ response = JSON.parse(message, symbolize_names: true)
175
+ @connectivity = true if response[:command] == "connected"
176
+ break
177
+ end
178
+ end
179
+
156
180
  def handle_termination_signals(pid)
157
181
  ["INT", "TERM"].each do |signal|
158
182
  Signal.trap(signal) do
@@ -175,7 +199,7 @@ module Selective
175
199
 
176
200
  sleep(1)
177
201
  end
178
- rescue NamedPipe::PipeClosedError
202
+ rescue NamedPipe::PipeClosedError, IOError
179
203
  # If the pipe is close, move straight to killing
180
204
  # it forcefully.
181
205
  end
@@ -272,6 +296,13 @@ module Selective
272
296
  @debug
273
297
  end
274
298
 
299
+ def safe_filename(filename)
300
+ filename
301
+ .gsub(/[\/\\:*?"<>|\n\r]+/, '_')
302
+ .gsub(/^\.+|\.+$/, '')
303
+ .strip[0, 255]
304
+ end
305
+
275
306
  def with_error_handling(include_header: true)
276
307
  yield
277
308
  rescue => e
@@ -3,7 +3,7 @@
3
3
  module Selective
4
4
  module Ruby
5
5
  module Core
6
- VERSION = "0.1.3"
6
+ VERSION = "0.1.4"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selective-ruby-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Benjamin Wood
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-11-21 00:00:00.000000000 Z
12
+ date: 2023-12-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: zeitwerk