selective-ruby-core 0.2.0-arm64-darwin → 0.2.1-arm64-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: 0a1834d0cad8044c524a62aa1aefad3cb7708e7393b1d5f92142801ff95bf2c5
4
- data.tar.gz: 3f09d5d3467e2a175184cb80b7fdec2cbbbb926328af80328f18a4138fb4f59e
3
+ metadata.gz: 8126e9b36b7fa8536ef480c391018765cfc8f50c651edd3e09bd45d7b4e0c0f4
4
+ data.tar.gz: e0639c048e0af1b2c02788efd7e371eb8e0b080bb03cc2dcbb87b015b102f056
5
5
  SHA512:
6
- metadata.gz: 47418ce6ca81db5afe4afdcc6328a5b26aa6f24a3040809a70dc341b82eb87413ad29b195eb8be4a0cb695ca0beb838f8257604510d43d02070afa6d54e9b2bc
7
- data.tar.gz: ee062146688a71ea8e62202efe2a5b46c071fc437d13c47f7336ded9ace5c8e2a591a73f0bc5248f85487acffc76a2a73e657cc128a1365ded71ad9a8ff7ff33
6
+ metadata.gz: 2798ec33a52c77f737b369af74e013586539a561a5311ac4a434144fbf60f5047bca61a3f40fbd9aeca78059be9cf33b360582d3bb5562cd317259594b66c355
7
+ data.tar.gz: 9e79e6d91184a94716aa7824a388e924b4dac885ba6ab66b4c1dca281ae08c0844d8f6315b5efaf9e599560d05cf57d837c7b0df49a874dc3b147170be2e16f5
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
  }
@@ -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.1"
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.2.0
4
+ version: 0.2.1
5
5
  platform: arm64-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: 2024-01-13 00:00:00.000000000 Z
12
+ date: 2024-01-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: zeitwerk