selective-ruby-core 0.2.0-aarch64-linux → 0.2.2-aarch64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8539142f05e00bd84ee522923abf3f60f0ff35395b078df034ad9c435a182a44
4
- data.tar.gz: 2eec5fc40d33ae40110637c77244d31b2bfbff0cfe3559b4a8d36fb94976301b
3
+ metadata.gz: dce8983e6c53ad56dc5d7829282ca44f413f7b5cf86c29929810c4c893e5a6a9
4
+ data.tar.gz: 51142c78c87a1de76ca42368e8d2259c7c564c92ef25aa55a0126a9b8f12a522
5
5
  SHA512:
6
- metadata.gz: 1c8aea8bdb1e453bbf1d346062992922554f230aa1b713bba4a97abf37d736df10a34b43b493f6201bf6cad231f660394fe24b435f10c0dc78ab500f95c49468
7
- data.tar.gz: 46d2b7bff31cd1fda0bf741e09c98fa083c782a27c9c2a77ca15f2d2f8537891f32803cb78bd9e0c16c2e8d8dec97779c31a59bf2d827f391a748f6e9d10b86a
6
+ metadata.gz: ff8ae6e7d6350bbe66b95d4898f043ce70c29212982a8b586d97b50c55361a467dcbb4cd4fd79f6b7a07af7a59b4c8d5de3e6c588efd4d4f40254c2462b4b8eb
7
+ data.tar.gz: ebeda0af47053f8766bd207f5bf8933f94b6afce83939f0361f510d1a5d362b106eaca3d0fa40a41701d02e55688bd56e79424e5d2026c3a24c555882f296d1d
data/lib/bin/build_env.sh CHANGED
@@ -3,31 +3,32 @@
3
3
  # Detect the platform (only GitHub Actions in this case)
4
4
  if [ -n "$GITHUB_ACTIONS" ]; then
5
5
  platform=github_actions
6
- branch=${SELECTIVE_BRANCH:-${GITHUB_HEAD_REF:-$GITHUB_REF_NAME}}
7
- target_branch=${SELECTIVE_TARGET_BRANCH:-$GITHUB_BASE_REF}
6
+ branch=${GITHUB_HEAD_REF:-$GITHUB_REF_NAME}
7
+ target_branch=$GITHUB_BASE_REF
8
8
  actor=$GITHUB_ACTOR
9
- sha=${SELECTIVE_SHA:-$GITHUB_SHA}
10
- run_id=${SELECTIVE_RUN_ID:-$GITHUB_RUN_ID}
11
- run_attempt=${SELECTIVE_RUN_ATTEMPT:-$GITHUB_RUN_ATTEMPT}
9
+ sha=$GITHUB_SHA
10
+ run_id=$GITHUB_RUN_ID
11
+ run_attempt=$GITHUB_RUN_ATTEMPT
12
12
  runner_id=$SELECTIVE_RUNNER_ID
13
13
  elif [ -n "$CIRCLECI" ]; then
14
14
  platform=circleci
15
- branch=${SELECTIVE_BRANCH:-$CIRCLE_BRANCH}
16
- target_branch=$SELECTIVE_TARGET_BRANCH
17
- actor=${SELECTIVE_ACTOR:-${CIRCLE_USERNAME:-$CIRCLE_PR_USERNAME}}
18
- sha=${SELECTIVE_SHA:-$CIRCLE_SHA1}
19
- run_id=$SELECTIVE_RUN_ID
20
- run_attempt=${SELECTIVE_RUN_ATTEMPT:-$CIRCLE_BUILD_NUM}
21
- runner_id=${SELECTIVE_RUNNER_ID:-$CIRCLE_NODE_INDEX}
22
- else
23
- platform=$SELECTIVE_PLATFORM
24
- branch=$SELECTIVE_BRANCH
25
- target_branch=$SELECTIVE_TARGET_BRANCH
26
- actor=$SELECTIVE_ACTOR
27
- sha=$SELECTIVE_SHA
28
- run_id=$SELECTIVE_RUN_ID
29
- run_attempt=$SELECTIVE_RUN_ATTEMPT
30
- runner_id=$SELECTIVE_RUNNER_ID
15
+ branch=$CIRCLE_BRANCH
16
+ actor=${CIRCLE_USERNAME:-$CIRCLE_PR_USERNAME}
17
+ sha=$CIRCLE_SHA1
18
+ run_attempt=$CIRCLE_BUILD_NUM
19
+ runner_id=$CIRCLE_NODE_INDEX
20
+ elif [ -n "$SEMAPHORE" ]; then
21
+ platform=semaphore
22
+ branch=${SEMAPHORE_GIT_PR_BRANCH:-$SEMAPHORE_GIT_BRANCH}
23
+ if [ -n "$SEMAPHORE_GIT_PR_BRANCH" ]; then
24
+ target_branch=$SEMAPHORE_GIT_BRANCH
25
+ fi
26
+ actor=$SEMAPHORE_GIT_COMMITTER
27
+ sha=$SEMAPHORE_GIT_SHA
28
+ run_id=$SEMAPHORE_WORKFLOW_ID
29
+ run_attempt=1
30
+ runner_id=$SEMAPHORE_JOB_ID
31
+ pr_title=$SEMAPHORE_GIT_PR_NAME
31
32
  fi
32
33
 
33
34
  # Output the JSON
@@ -35,16 +36,16 @@ cat <<EOF
35
36
  {
36
37
  "api_key": "$SELECTIVE_API_KEY",
37
38
  "host": "${SELECTIVE_HOST:-wss://app.selective.ci}",
38
- "platform": "$platform",
39
- "branch": "$branch",
40
- "pr_title": "$SELECTIVE_PR_TITLE",
41
- "target_branch": "$target_branch",
42
- "actor": "$actor",
43
- "sha": "$sha",
44
- "run_id": "$run_id",
45
- "run_attempt": "$run_attempt",
39
+ "platform": "${SELECTIVE_PLATFORM:-$platform}",
40
+ "branch": "${SELECTIVE_BRANCH:-$branch}",
41
+ "pr_title": "${SELECTIVE_PR_TITLE:-$pr_title}",
42
+ "target_branch": "${SELECTIVE_TARGET_BRANCH:-$target_branch}",
43
+ "actor": "${SELECTIVE_ACTOR:-$actor}",
44
+ "sha": "${SELECTIVE_SHA:-$sha}",
45
+ "run_id": "${SELECTIVE_RUN_ID:-$run_id}",
46
+ "run_attempt": "${SELECTIVE_RUN_ATTEMPT:-$run_attempt}",
47
+ "runner_id": "${SELECTIVE_RUNNER_ID:-$runner_id}",
46
48
  "commit_message": "$(git log --format=%s -n 1 $sha)",
47
- "runner_id": "$runner_id",
48
49
  "committer_name": "$(git show -s --format='%an' -n 1 $sha)",
49
50
  "committer_email": "$(git show -s --format='%ae' -n 1 $sha)"
50
51
  }
@@ -14,12 +14,13 @@ module Selective
14
14
  "api_key" => "SELECTIVE_API_KEY",
15
15
  "platform" => "SELECTIVE_PLATFORM",
16
16
  "run_id" => "SELECTIVE_RUN_ID",
17
+ "run_attempt" => "SELECTIVE_RUN_ATTEMPT",
17
18
  "branch" => "SELECTIVE_BRANCH"
18
19
  }.freeze
19
20
 
20
- def initialize(runner, debug: false, log: false)
21
+ def initialize(runner_class, runner_args, debug: false, log: false)
21
22
  @debug = debug
22
- @runner = runner
23
+ @runner = runner_class.new(runner_args, method(:test_case_callback))
23
24
  @retries = 0
24
25
  @runner_id = safe_filename(get_runner_id)
25
26
  @logger = init_logger(log)
@@ -113,7 +114,6 @@ module Selective
113
114
  host = build_env.delete("host")
114
115
  run_id = build_env.delete("run_id")
115
116
  run_attempt = build_env.delete("run_attempt")
116
- run_attempt = SecureRandom.uuid if run_attempt.nil? || run_attempt.empty?
117
117
 
118
118
  params = {
119
119
  "run_id" => run_id,
@@ -267,7 +267,7 @@ module Selective
267
267
  end
268
268
 
269
269
  def handle_run_test_cases(data)
270
- runner.run_test_cases(data[:test_case_ids], method(:test_case_callback))
270
+ runner.run_test_cases(data[:test_case_ids])
271
271
  end
272
272
 
273
273
  def handle_remove_failed_test_case_result(data)
@@ -17,7 +17,10 @@ module Selective
17
17
  def correlate
18
18
  JSON.parse(get_correlated_files, symbolize_names: true)
19
19
  rescue FileCorrelatorError, JSON::ParserError
20
- print_warning "Selective was unable to correlate the diff to test files. This may result in a sub-optimal test order. If the issue persists, please contact support."
20
+ print_warning(<<~MSG)
21
+ Selective was unable to correlate the diff to test files. This may result in a sub-optimal test order.
22
+ If the issue persists, please contact support.
23
+ MSG
21
24
  end
22
25
 
23
26
  private
@@ -3,7 +3,7 @@
3
3
  module Selective
4
4
  module Ruby
5
5
  module Core
6
- VERSION = "0.2.0"
6
+ VERSION = "0.2.2"
7
7
  end
8
8
  end
9
9
  end
@@ -44,7 +44,7 @@ module Selective
44
44
  attr_reader :debug, :log, :runner_name, :args, :command
45
45
 
46
46
  def run
47
- Selective::Ruby::Core::Controller.new(runner, debug: debug, log: log).send(command)
47
+ Selective::Ruby::Core::Controller.new(runner_class, args, debug: debug, log: log).send(command)
48
48
  end
49
49
 
50
50
  def parse_args(args)
@@ -56,8 +56,8 @@ module Selective
56
56
  end
57
57
  end
58
58
 
59
- def runner
60
- Selective::Ruby::Core.runner_for(runner_name).new(args)
59
+ def runner_class
60
+ Selective::Ruby::Core.runner_for(runner_name)
61
61
  end
62
62
 
63
63
  def require_runner
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.2.0
4
+ version: 0.2.2
5
5
  platform: aarch64-linux
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: 2024-01-13 00:00:00.000000000 Z
12
+ date: 2024-01-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: zeitwerk