selective-ruby-core 0.2.7-x86_64-linux → 0.2.8-x86_64-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 +4 -4
- data/LICENSE +0 -0
- data/Rakefile +0 -0
- data/lib/bin/build_env.sh +17 -3
- data/lib/selective/ruby/core/controller.rb +0 -0
- data/lib/selective/ruby/core/file_correlator.rb +0 -0
- data/lib/selective/ruby/core/helper.rb +0 -0
- data/lib/selective/ruby/core/named_pipe.rb +0 -0
- data/lib/selective/ruby/core/version.rb +1 -1
- data/lib/selective-ruby-core.rb +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a270fd09fb9cd882d558e32f7d394a39ff7c47b1c2d8762a84e72fd27113cfc0
|
|
4
|
+
data.tar.gz: 0a014564409691b0fa5c298aa96db0614a2702e663adefbc8577af425812e1f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93cb6c86f820709d59f5cce287516f9e0284c71375f686022c04d69ccdfb428937f1a96ec85f1574e316f11863d73fb41bd07fd9a115134c32fd17bbbadd0d05
|
|
7
|
+
data.tar.gz: 867a6d14e18eb8d486424bc1d09335fbf458ce286e71637e947829890d0f422babc8d20644bf7c846965b339809aa3f8171641bb6f1b2c691757abe6e3d3b40c
|
data/LICENSE
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/lib/bin/build_env.sh
CHANGED
|
@@ -38,16 +38,30 @@ elif [ -n "$SEMAPHORE" ]; then
|
|
|
38
38
|
commit_message=$(git log --format=%s -n 1 $sha)
|
|
39
39
|
committer_name=$(git show -s --format='%an' -n 1 $sha)
|
|
40
40
|
committer_email=$(git show -s --format='%ae' -n 1 $sha)
|
|
41
|
+
elif [ -n "$RWX" ]; then
|
|
42
|
+
platform=rwx
|
|
43
|
+
branch="${RWX_GIT_REF_NAME}"
|
|
44
|
+
actor="${RWX_ACTOR}"
|
|
45
|
+
sha="${RWX_GIT_COMMIT_SHA}"
|
|
46
|
+
run_id="${RWX_RUN_ID}"
|
|
47
|
+
run_attempt="${RWX_TASK_ATTEMPT_NUMBER}"
|
|
48
|
+
runner_id="${RWX_PARALLEL_INDEX}"
|
|
49
|
+
# RWX does not preserve the .git directory by default to improve the likelihood of cache hits. Instead
|
|
50
|
+
# of asking git for commit information, then, we rely on the git/clone package to populate the necessary
|
|
51
|
+
# metadata in environment variables.
|
|
52
|
+
commit_message="${RWX_GIT_COMMIT_SUMMARY}"
|
|
53
|
+
committer_name="${RWX_GIT_COMMITTER_NAME}"
|
|
54
|
+
committer_email="${RWX_GIT_COMMITTER_EMAIL}"
|
|
41
55
|
elif [ -n "$MINT" ]; then
|
|
42
|
-
platform=
|
|
56
|
+
platform=rwx
|
|
43
57
|
branch="${MINT_GIT_REF_NAME}"
|
|
44
58
|
actor="${MINT_ACTOR}"
|
|
45
59
|
sha="${MINT_GIT_COMMIT_SHA}"
|
|
46
60
|
run_id="${MINT_RUN_ID}"
|
|
47
61
|
run_attempt="${MINT_TASK_ATTEMPT_NUMBER}"
|
|
48
62
|
runner_id="${MINT_PARALLEL_INDEX}"
|
|
49
|
-
#
|
|
50
|
-
# of asking git for commit information, then, we rely on the
|
|
63
|
+
# RWX does not preserve the .git directory by default to improve the likelihood of cache hits. Instead
|
|
64
|
+
# of asking git for commit information, then, we rely on the git/clone package to populate the necessary
|
|
51
65
|
# metadata in environment variables.
|
|
52
66
|
commit_message="${MINT_GIT_COMMIT_SUMMARY}"
|
|
53
67
|
committer_name="${MINT_GIT_COMMITTER_NAME}"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/selective-ruby-core.rb
CHANGED
|
File without changes
|
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.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: x86_64-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:
|
|
12
|
+
date: 2026-04-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: zeitwerk
|
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: '0'
|
|
73
73
|
requirements: []
|
|
74
|
-
rubygems_version: 3.5.
|
|
74
|
+
rubygems_version: 3.5.22
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|
|
77
77
|
summary: Selective Ruby Client Core
|