rubycc 1.0.0

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.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +56 -0
  3. data/LICENSE.txt +21 -0
  4. data/NOTICE +52 -0
  5. data/README.md +208 -0
  6. data/data/README.md +117 -0
  7. data/data/r10_corpus_scan.json +4082 -0
  8. data/data/r10_manual_classification.json +5342 -0
  9. data/data/r10_verification_m4a.json +1531 -0
  10. data/data/r10_verification_m4b.json +1818 -0
  11. data/data/r10_verification_m4c.json +1489 -0
  12. data/data/r10_verification_m4d.json +318 -0
  13. data/data/r10_verification_rbs.json +192 -0
  14. data/data/verified_gems.json +397 -0
  15. data/exe/rmake +16 -0
  16. data/exe/rubycc +9 -0
  17. data/exe/rubycc-ar +114 -0
  18. data/exe/rubycc-doctor +14 -0
  19. data/exe/rubycc-pkgconf +8 -0
  20. data/include/float.h +87 -0
  21. data/include/iso646.h +18 -0
  22. data/include/libc/alloca.h +18 -0
  23. data/include/libc/arpa/inet.h +61 -0
  24. data/include/libc/assert.h +43 -0
  25. data/include/libc/dirent.h +72 -0
  26. data/include/libc/dlfcn.h +58 -0
  27. data/include/libc/features.h +205 -0
  28. data/include/libc/glibc/aarch64/ctype.h +108 -0
  29. data/include/libc/glibc/aarch64/endian.h +54 -0
  30. data/include/libc/glibc/aarch64/errno.h +154 -0
  31. data/include/libc/glibc/aarch64/fcntl.h +144 -0
  32. data/include/libc/glibc/aarch64/inttypes.h +182 -0
  33. data/include/libc/glibc/aarch64/limits.h +63 -0
  34. data/include/libc/glibc/aarch64/pthread.h +131 -0
  35. data/include/libc/glibc/aarch64/setjmp.h +84 -0
  36. data/include/libc/glibc/aarch64/stdint.h +174 -0
  37. data/include/libc/glibc/aarch64/sys/epoll.h +88 -0
  38. data/include/libc/glibc/aarch64/sys/fcntl.h +19 -0
  39. data/include/libc/glibc/aarch64/sys/select.h +75 -0
  40. data/include/libc/glibc/aarch64/sys/stat.h +136 -0
  41. data/include/libc/glibc/aarch64/sys/syscall.h +167 -0
  42. data/include/libc/glibc/aarch64/sys/time.h +74 -0
  43. data/include/libc/glibc/aarch64/sys/types.h +127 -0
  44. data/include/libc/glibc/aarch64/time.h +113 -0
  45. data/include/libc/glibc/x86_64/ctype.h +108 -0
  46. data/include/libc/glibc/x86_64/endian.h +54 -0
  47. data/include/libc/glibc/x86_64/errno.h +154 -0
  48. data/include/libc/glibc/x86_64/fcntl.h +134 -0
  49. data/include/libc/glibc/x86_64/inttypes.h +182 -0
  50. data/include/libc/glibc/x86_64/limits.h +61 -0
  51. data/include/libc/glibc/x86_64/pthread.h +111 -0
  52. data/include/libc/glibc/x86_64/setjmp.h +82 -0
  53. data/include/libc/glibc/x86_64/stdint.h +163 -0
  54. data/include/libc/glibc/x86_64/sys/epoll.h +91 -0
  55. data/include/libc/glibc/x86_64/sys/fcntl.h +19 -0
  56. data/include/libc/glibc/x86_64/sys/select.h +75 -0
  57. data/include/libc/glibc/x86_64/sys/stat.h +130 -0
  58. data/include/libc/glibc/x86_64/sys/syscall.h +188 -0
  59. data/include/libc/glibc/x86_64/sys/time.h +74 -0
  60. data/include/libc/glibc/x86_64/sys/types.h +123 -0
  61. data/include/libc/glibc/x86_64/time.h +113 -0
  62. data/include/libc/grp.h +50 -0
  63. data/include/libc/langinfo.h +126 -0
  64. data/include/libc/link.h +18 -0
  65. data/include/libc/locale.h +83 -0
  66. data/include/libc/math.h +191 -0
  67. data/include/libc/netinet/in.h +126 -0
  68. data/include/libc/netinet/tcp.h +44 -0
  69. data/include/libc/poll.h +46 -0
  70. data/include/libc/pwd.h +58 -0
  71. data/include/libc/regex.h +53 -0
  72. data/include/libc/sched.h +35 -0
  73. data/include/libc/signal.h +204 -0
  74. data/include/libc/stdio.h +157 -0
  75. data/include/libc/stdlib.h +92 -0
  76. data/include/libc/string.h +74 -0
  77. data/include/libc/strings.h +25 -0
  78. data/include/libc/sys/cdefs.h +126 -0
  79. data/include/libc/sys/inotify.h +111 -0
  80. data/include/libc/sys/ioctl.h +36 -0
  81. data/include/libc/sys/mman.h +65 -0
  82. data/include/libc/sys/param.h +41 -0
  83. data/include/libc/sys/resource.h +109 -0
  84. data/include/libc/sys/socket.h +167 -0
  85. data/include/libc/sys/statfs.h +82 -0
  86. data/include/libc/sys/timerfd.h +55 -0
  87. data/include/libc/sys/uio.h +40 -0
  88. data/include/libc/sys/un.h +25 -0
  89. data/include/libc/sys/utsname.h +35 -0
  90. data/include/libc/sys/wait.h +135 -0
  91. data/include/libc/termios.h +179 -0
  92. data/include/libc/unistd.h +194 -0
  93. data/include/stdalign.h +16 -0
  94. data/include/stdarg.h +31 -0
  95. data/include/stdatomic.h +158 -0
  96. data/include/stdbool.h +15 -0
  97. data/include/stdckdint.h +28 -0
  98. data/include/stddef.h +60 -0
  99. data/include/stdnoreturn.h +18 -0
  100. data/include/x86intrin.h +16 -0
  101. data/lib/rubycc/backend/aarch64.rb +1724 -0
  102. data/lib/rubycc/backend/x86_64.rb +1369 -0
  103. data/lib/rubycc/compile_error.rb +36 -0
  104. data/lib/rubycc/compiler.rb +305 -0
  105. data/lib/rubycc/doctor/builder.rb +151 -0
  106. data/lib/rubycc/doctor/cli.rb +190 -0
  107. data/lib/rubycc/doctor/fetcher.rb +84 -0
  108. data/lib/rubycc/doctor/gemfile.rb +115 -0
  109. data/lib/rubycc/doctor/verified_gems.rb +114 -0
  110. data/lib/rubycc/doctor.rb +16 -0
  111. data/lib/rubycc/driver.rb +463 -0
  112. data/lib/rubycc/front/ast.rb +528 -0
  113. data/lib/rubycc/front/constant_evaluator.rb +631 -0
  114. data/lib/rubycc/front/initializer_resolver.rb +592 -0
  115. data/lib/rubycc/front/lexeme_reader.rb +460 -0
  116. data/lib/rubycc/front/lexer.rb +232 -0
  117. data/lib/rubycc/front/parser.rb +4122 -0
  118. data/lib/rubycc/front/token.rb +49 -0
  119. data/lib/rubycc/ir/call_convention.rb +486 -0
  120. data/lib/rubycc/ir/generator.rb +6036 -0
  121. data/lib/rubycc/ir/ir.rb +417 -0
  122. data/lib/rubycc/link/compat_runtime.rb +89 -0
  123. data/lib/rubycc/link/errors.rb +13 -0
  124. data/lib/rubycc/link/executable_linker.rb +405 -0
  125. data/lib/rubycc/link/library_resolver.rb +437 -0
  126. data/lib/rubycc/link/partial_linker.rb +546 -0
  127. data/lib/rubycc/link/shared_linker.rb +1732 -0
  128. data/lib/rubycc/mkmf_shim.rb +83 -0
  129. data/lib/rubycc/objfile/ar_archive.rb +437 -0
  130. data/lib/rubycc/objfile/elf_reader.rb +646 -0
  131. data/lib/rubycc/objfile/elf_writer.rb +891 -0
  132. data/lib/rubycc/objfile/relocatable_writer.rb +376 -0
  133. data/lib/rubycc/pkgconf/cli.rb +139 -0
  134. data/lib/rubycc/pkgconf/errors.rb +39 -0
  135. data/lib/rubycc/pkgconf/model.rb +28 -0
  136. data/lib/rubycc/pkgconf/parser.rb +109 -0
  137. data/lib/rubycc/pkgconf/pkgconf.rb +15 -0
  138. data/lib/rubycc/pkgconf/resolver.rb +70 -0
  139. data/lib/rubycc/pkgconf/search_path.rb +38 -0
  140. data/lib/rubycc/pkgconf/system_path_filter.rb +131 -0
  141. data/lib/rubycc/preprocess/constant_expression.rb +219 -0
  142. data/lib/rubycc/preprocess/glibc_version.rb +124 -0
  143. data/lib/rubycc/preprocess/pp_token.rb +62 -0
  144. data/lib/rubycc/preprocess/preprocessor.rb +2020 -0
  145. data/lib/rubycc/preprocess/scanner.rb +290 -0
  146. data/lib/rubycc/preprocess/token_converter.rb +157 -0
  147. data/lib/rubycc/rmake/cli.rb +143 -0
  148. data/lib/rubycc/rmake/errors.rb +71 -0
  149. data/lib/rubycc/rmake/executor.rb +818 -0
  150. data/lib/rubycc/rmake/expander.rb +251 -0
  151. data/lib/rubycc/rmake/makefile.rb +352 -0
  152. data/lib/rubycc/rmake/model.rb +137 -0
  153. data/lib/rubycc/rmake/parser.rb +226 -0
  154. data/lib/rubycc/rmake/rmake.rb +15 -0
  155. data/lib/rubycc/type.rb +1236 -0
  156. data/lib/rubycc/version.rb +5 -0
  157. data/lib/rubycc.rb +36 -0
  158. data/lib/rubygems_plugin.rb +102 -0
  159. metadata +219 -0
@@ -0,0 +1,1489 @@
1
+ {
2
+ "schema_version": 2,
3
+ "artifact_kind": "r10-gem-verification-summary",
4
+ "batch": "R10-M4C",
5
+ "environment": "glibc x86_64 / ruby 3.4.5",
6
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
7
+ "architecture": "x86_64",
8
+ "aarch64_evidence": false,
9
+ "work_dir": "<VERIFY_WORK>",
10
+ "source_notes": [
11
+ "M4C progress was measured with isolated scratch GEM_SPEC_CACHE after host-cache EROFS; initial batch abort due missing RBS recipe is not a result.",
12
+ "yajl-ruby uses the exact 1.4.3 .gem data archive because GitHub has no 1.4.3 tag."
13
+ ],
14
+ "control": [
15
+ {
16
+ "name": "openssl",
17
+ "version": "4.0.2",
18
+ "mode": "control",
19
+ "status": "pass",
20
+ "reason": null,
21
+ "sanity": true,
22
+ "evidence": [
23
+ "no rubycc traces (host cc)"
24
+ ],
25
+ "summary": {
26
+ "line": "592 tests, 4370 assertions, 0 failures, 0 errors, 2 omissions",
27
+ "tests": 592,
28
+ "assertions": 4370,
29
+ "failures": 0,
30
+ "errors": 0,
31
+ "other": {
32
+ "omissions": 2
33
+ }
34
+ },
35
+ "build_state": "pass",
36
+ "extension_load_state": "pass",
37
+ "suite_state": "pass",
38
+ "provenance": {
39
+ "gem_url": "https://rubygems.org/downloads/openssl-4.0.2.gem",
40
+ "gem_sha256": "1037ad2868ae58df9ad917891c0c0f9815a1172f6846d4bcdd508e4c2ee747c2",
41
+ "source_kind": "source_tarball",
42
+ "source_url": "https://github.com/ruby/openssl/archive/refs/tags/v4.0.2.tar.gz",
43
+ "source_sha256": "605b4d9109cf55ab64c5a4eba7b06d1df65b267777a732f392147591fe45efbb",
44
+ "source_relative_path": "r10-m4c/openssl-4.0.2-src.tar.gz"
45
+ },
46
+ "recipe": {
47
+ "name": "openssl",
48
+ "version": "4.0.2",
49
+ "source_kind": "source_tarball",
50
+ "source_url": "https://github.com/ruby/openssl/archive/refs/tags/v4.0.2.tar.gz",
51
+ "runner": "test_unit",
52
+ "test_glob": "test/**/test_*.rb",
53
+ "exclude": [],
54
+ "load_paths": [
55
+ "lib",
56
+ "test"
57
+ ],
58
+ "extconf_args": [],
59
+ "sos": [
60
+ {
61
+ "from": "lib/openssl.so",
62
+ "to": "lib/openssl.so"
63
+ }
64
+ ],
65
+ "test_deps": [
66
+ "test-unit",
67
+ "test-unit-ruby-core"
68
+ ],
69
+ "test_dep_versions": {},
70
+ "sanity": {
71
+ "requires": [
72
+ "openssl"
73
+ ],
74
+ "expression": "injected_so_loaded?"
75
+ },
76
+ "recipe_fingerprint": "c947202774f66c12d2ea8cb34637290e4ce75c8bb054e2beafd1187a77c4372c"
77
+ },
78
+ "execution_context": {
79
+ "environment": "glibc x86_64 / ruby 3.4.5",
80
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
81
+ "host_cpu": "x86_64",
82
+ "ruby_arch": "x86_64-linux",
83
+ "cc": null,
84
+ "make": null,
85
+ "pkg_config": null,
86
+ "rubycc_mode": "control"
87
+ },
88
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
89
+ "rubycc_worktree_dirty": true
90
+ },
91
+ {
92
+ "name": "nio4r",
93
+ "version": "2.7.5",
94
+ "mode": "control",
95
+ "status": "unparsable",
96
+ "reason": "suite child exited non-zero without an RSpec summary: symbol lookup error, undefined symbol ev_loop_new",
97
+ "sanity": true,
98
+ "evidence": [
99
+ "no rubycc traces (host cc)"
100
+ ],
101
+ "summary": null,
102
+ "build_state": "pass",
103
+ "extension_load_state": "pass",
104
+ "suite_state": "inconclusive",
105
+ "provenance": {
106
+ "gem_url": "https://rubygems.org/downloads/nio4r-2.7.5.gem",
107
+ "gem_sha256": "6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1",
108
+ "source_kind": "source_tarball",
109
+ "source_url": "https://github.com/socketry/nio4r/archive/refs/tags/v2.7.5.tar.gz",
110
+ "source_sha256": "6b17580f7a84903b5c76a97bb926098cfeb012fd6189a0481f417df6d944d93f",
111
+ "source_relative_path": "r10-m4c/nio4r-2.7.5-src.tar.gz"
112
+ },
113
+ "recipe": {
114
+ "name": "nio4r",
115
+ "version": "2.7.5",
116
+ "source_kind": "source_tarball",
117
+ "source_url": "https://github.com/socketry/nio4r/archive/refs/tags/v2.7.5.tar.gz",
118
+ "runner": "rspec",
119
+ "test_glob": "spec/**/*_spec.rb",
120
+ "exclude": [],
121
+ "load_paths": [
122
+ "lib",
123
+ "spec"
124
+ ],
125
+ "extconf_args": [
126
+ "--with-cflags=-fPIC -DEV_API_STATIC"
127
+ ],
128
+ "sos": [
129
+ {
130
+ "from": "lib/nio4r_ext.so",
131
+ "to": "lib/nio4r_ext.so"
132
+ }
133
+ ],
134
+ "test_deps": [
135
+ "rspec"
136
+ ],
137
+ "test_dep_versions": {},
138
+ "sanity": {
139
+ "requires": [
140
+ "nio"
141
+ ],
142
+ "expression": "injected_so_loaded?"
143
+ },
144
+ "recipe_fingerprint": "0f3ebdf05c3f6f6bc98dad42ca265d6b568a8b46f9dffdd24996cdd2ed79e2bc"
145
+ },
146
+ "execution_context": {
147
+ "environment": "glibc x86_64 / ruby 3.4.5",
148
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
149
+ "host_cpu": "x86_64",
150
+ "ruby_arch": "x86_64-linux",
151
+ "cc": null,
152
+ "make": null,
153
+ "pkg_config": null,
154
+ "rubycc_mode": "control"
155
+ },
156
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
157
+ "rubycc_worktree_dirty": true
158
+ },
159
+ {
160
+ "name": "prism",
161
+ "version": "1.8.1",
162
+ "mode": "control",
163
+ "status": "pass",
164
+ "reason": null,
165
+ "sanity": true,
166
+ "evidence": [
167
+ "no rubycc traces (host cc)"
168
+ ],
169
+ "summary": {
170
+ "line": "17306 tests, 1762400 assertions, 0 failures, 0 errors, 3 omissions",
171
+ "tests": 17306,
172
+ "assertions": 1762400,
173
+ "failures": 0,
174
+ "errors": 0,
175
+ "other": {
176
+ "omissions": 3
177
+ }
178
+ },
179
+ "build_state": "pass",
180
+ "extension_load_state": "pass",
181
+ "suite_state": "pass",
182
+ "provenance": {
183
+ "gem_url": "https://rubygems.org/downloads/prism-1.8.1.gem",
184
+ "gem_sha256": "b260c1844ee0c7ead9c938f7fd63b95888c87cc054dfb64043204eccff8116ac",
185
+ "source_kind": "source_tarball",
186
+ "source_url": "https://github.com/ruby/prism/archive/refs/tags/v1.8.1.tar.gz",
187
+ "source_sha256": "3e162b1d76eb02e817d306fb966d74613d17bc9ed153915e99b5849d27f3b658",
188
+ "source_relative_path": "r10-m4c/prism-1.8.1-src.tar.gz"
189
+ },
190
+ "recipe": {
191
+ "name": "prism",
192
+ "version": "1.8.1",
193
+ "source_kind": "source_tarball",
194
+ "source_url": "https://github.com/ruby/prism/archive/refs/tags/v1.8.1.tar.gz",
195
+ "runner": "test_unit",
196
+ "test_glob": "test/prism/**/*_test.rb",
197
+ "exclude": [],
198
+ "load_paths": [
199
+ "lib",
200
+ "test/prism"
201
+ ],
202
+ "extconf_args": [],
203
+ "sos": [
204
+ {
205
+ "from": "lib/prism/prism.so",
206
+ "to": "lib/prism/prism.so"
207
+ }
208
+ ],
209
+ "test_deps": [
210
+ "test-unit",
211
+ "test-unit-ruby-core"
212
+ ],
213
+ "test_dep_versions": {},
214
+ "sanity": {
215
+ "requires": [
216
+ "prism"
217
+ ],
218
+ "expression": "injected_so_loaded?"
219
+ },
220
+ "recipe_fingerprint": "584c2c0ad6b64bcb0a3926e436b63801f1a46d16503be6db8f73d40561bb7c66"
221
+ },
222
+ "execution_context": {
223
+ "environment": "glibc x86_64 / ruby 3.4.5",
224
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
225
+ "host_cpu": "x86_64",
226
+ "ruby_arch": "x86_64-linux",
227
+ "cc": null,
228
+ "make": null,
229
+ "pkg_config": null,
230
+ "rubycc_mode": "control"
231
+ },
232
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
233
+ "rubycc_worktree_dirty": true
234
+ },
235
+ {
236
+ "name": "fiddle",
237
+ "version": "1.1.8",
238
+ "mode": "control",
239
+ "status": "pass",
240
+ "reason": null,
241
+ "sanity": true,
242
+ "evidence": [
243
+ "no rubycc traces (host cc)"
244
+ ],
245
+ "summary": {
246
+ "line": "227 tests, 615 assertions, 0 failures, 0 errors",
247
+ "tests": 227,
248
+ "assertions": 615,
249
+ "failures": 0,
250
+ "errors": 0,
251
+ "other": {}
252
+ },
253
+ "build_state": "pass",
254
+ "extension_load_state": "pass",
255
+ "suite_state": "pass",
256
+ "provenance": {
257
+ "gem_url": "https://rubygems.org/downloads/fiddle-1.1.8.gem",
258
+ "gem_sha256": "7fa8ee3627271497f3add5503acdbc3f40b32f610fc1cf49634f083ef3f32eee",
259
+ "source_kind": "source_tarball",
260
+ "source_url": "https://github.com/ruby/fiddle/archive/refs/tags/v1.1.8.tar.gz",
261
+ "source_sha256": "c74a1117bef7fbcc52f51863b84bfb9b2a3b30be2457858217fa2f18afb6d29c",
262
+ "source_relative_path": "r10-m4c/fiddle-1.1.8-src.tar.gz"
263
+ },
264
+ "recipe": {
265
+ "name": "fiddle",
266
+ "version": "1.1.8",
267
+ "source_kind": "source_tarball",
268
+ "source_url": "https://github.com/ruby/fiddle/archive/refs/tags/v1.1.8.tar.gz",
269
+ "runner": "test_unit",
270
+ "test_glob": "test/fiddle/test_*.rb",
271
+ "exclude": [],
272
+ "load_paths": [
273
+ "lib",
274
+ "test/fiddle"
275
+ ],
276
+ "extconf_args": [],
277
+ "sos": [
278
+ {
279
+ "from": "lib/fiddle.so",
280
+ "to": "lib/fiddle.so"
281
+ }
282
+ ],
283
+ "test_deps": [
284
+ "test-unit",
285
+ "test-unit-ruby-core"
286
+ ],
287
+ "test_dep_versions": {},
288
+ "sanity": {
289
+ "requires": [
290
+ "fiddle"
291
+ ],
292
+ "expression": "injected_so_loaded?"
293
+ },
294
+ "recipe_fingerprint": "2da6152e5f8f3ad0389ff1fe7bdeffb0bd03c55b9d560681fa2cae0795e853c6"
295
+ },
296
+ "execution_context": {
297
+ "environment": "glibc x86_64 / ruby 3.4.5",
298
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
299
+ "host_cpu": "x86_64",
300
+ "ruby_arch": "x86_64-linux",
301
+ "cc": null,
302
+ "make": null,
303
+ "pkg_config": null,
304
+ "rubycc_mode": "control"
305
+ },
306
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
307
+ "rubycc_worktree_dirty": true
308
+ },
309
+ {
310
+ "name": "bootsnap",
311
+ "version": "1.24.6",
312
+ "mode": "control",
313
+ "status": "unparsable",
314
+ "reason": "suite exited without a parseable summary; status was not promoted to pass",
315
+ "sanity": true,
316
+ "evidence": [
317
+ "no rubycc traces (host cc)"
318
+ ],
319
+ "summary": null,
320
+ "build_state": "pass",
321
+ "extension_load_state": "pass",
322
+ "suite_state": "inconclusive",
323
+ "provenance": {
324
+ "gem_url": "https://rubygems.org/downloads/bootsnap-1.24.6.gem",
325
+ "gem_sha256": "c60bab88c70332290f0a2636a288f675299eb4f804a02a3c085b42eca9da164a",
326
+ "source_kind": "source_tarball",
327
+ "source_url": "https://github.com/Shopify/bootsnap/archive/refs/tags/v1.24.6.tar.gz",
328
+ "source_sha256": "002ec58747f174cce445802d5256f8b84f59af917fbfbad54619ff06888300e7",
329
+ "source_relative_path": "r10-m4c/bootsnap-1.24.6-src.tar.gz"
330
+ },
331
+ "recipe": {
332
+ "name": "bootsnap",
333
+ "version": "1.24.6",
334
+ "source_kind": "source_tarball",
335
+ "source_url": "https://github.com/Shopify/bootsnap/archive/refs/tags/v1.24.6.tar.gz",
336
+ "runner": "test_unit",
337
+ "test_glob": "test/**/*_test.rb",
338
+ "exclude": [],
339
+ "load_paths": [
340
+ "lib",
341
+ "test"
342
+ ],
343
+ "extconf_args": [],
344
+ "sos": [
345
+ {
346
+ "from": "lib/bootsnap/bootsnap.so",
347
+ "to": "lib/bootsnap/bootsnap.so"
348
+ }
349
+ ],
350
+ "test_deps": [
351
+ "minitest",
352
+ "mocha"
353
+ ],
354
+ "test_dep_versions": {
355
+ "minitest": "5.25.5"
356
+ },
357
+ "sanity": {
358
+ "requires": [
359
+ "bootsnap/compile_cache",
360
+ "bootsnap/bootsnap"
361
+ ],
362
+ "expression": "injected_so_loaded?"
363
+ },
364
+ "recipe_fingerprint": "0fc66f9b35d8ebfafe6834db1d2b74ff69459aeb45161915d0b13de6ceb6eb6d"
365
+ },
366
+ "execution_context": {
367
+ "environment": "glibc x86_64 / ruby 3.4.5",
368
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
369
+ "host_cpu": "x86_64",
370
+ "ruby_arch": "x86_64-linux",
371
+ "cc": null,
372
+ "make": null,
373
+ "pkg_config": null,
374
+ "rubycc_mode": "control"
375
+ },
376
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
377
+ "rubycc_worktree_dirty": true
378
+ },
379
+ {
380
+ "name": "oj",
381
+ "version": "3.17.4",
382
+ "mode": "control",
383
+ "status": "fail",
384
+ "reason": "7 failures / 8 errors",
385
+ "sanity": true,
386
+ "evidence": [
387
+ "no rubycc traces (host cc)"
388
+ ],
389
+ "summary": {
390
+ "line": "627 tests, 9566 assertions, 7 failures, 8 errors",
391
+ "tests": 627,
392
+ "assertions": 9566,
393
+ "failures": 7,
394
+ "errors": 8,
395
+ "other": {}
396
+ },
397
+ "build_state": "pass",
398
+ "extension_load_state": "pass",
399
+ "suite_state": "fail",
400
+ "provenance": {
401
+ "gem_url": "https://rubygems.org/downloads/oj-3.17.4.gem",
402
+ "gem_sha256": "733fe3bcb7a5d985bd2e943620b7bea1bffb2809318af7021c841b833a6858e1",
403
+ "source_kind": "source_tarball",
404
+ "source_url": "https://github.com/ohler55/oj/archive/refs/tags/v3.17.4.tar.gz",
405
+ "source_sha256": "23826ff9508afe722ae127bca3517c1fef50c08efd44678bd3906bde9b3ee1de",
406
+ "source_relative_path": "r10-m4c/oj-3.17.4-src.tar.gz"
407
+ },
408
+ "recipe": {
409
+ "name": "oj",
410
+ "version": "3.17.4",
411
+ "source_kind": "source_tarball",
412
+ "source_url": "https://github.com/ohler55/oj/archive/refs/tags/v3.17.4.tar.gz",
413
+ "runner": "test_unit",
414
+ "test_glob": "test/test_*.rb",
415
+ "exclude": [],
416
+ "load_paths": [
417
+ "lib",
418
+ "test",
419
+ "ext"
420
+ ],
421
+ "extconf_args": [],
422
+ "sos": [
423
+ {
424
+ "from": "lib/oj/oj.so",
425
+ "to": "lib/oj/oj.so"
426
+ }
427
+ ],
428
+ "test_deps": [
429
+ "minitest"
430
+ ],
431
+ "test_dep_versions": {
432
+ "minitest": "5.25.5"
433
+ },
434
+ "sanity": {
435
+ "requires": [
436
+ "oj"
437
+ ],
438
+ "expression": "injected_so_loaded?"
439
+ },
440
+ "recipe_fingerprint": "212e2731f0e896e3df4d700f661edbc72d4a4f6b15899641429cdc41d76aaed3"
441
+ },
442
+ "execution_context": {
443
+ "environment": "glibc x86_64 / ruby 3.4.5",
444
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
445
+ "host_cpu": "x86_64",
446
+ "ruby_arch": "x86_64-linux",
447
+ "cc": null,
448
+ "make": null,
449
+ "pkg_config": null,
450
+ "rubycc_mode": "control"
451
+ },
452
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
453
+ "rubycc_worktree_dirty": true
454
+ },
455
+ {
456
+ "name": "puma",
457
+ "version": "8.0.2",
458
+ "mode": "control",
459
+ "status": "unparsable",
460
+ "reason": "suite timed out after 900s without a test_unit summary; not converted to skip",
461
+ "sanity": true,
462
+ "evidence": [
463
+ "no rubycc traces (host cc)"
464
+ ],
465
+ "summary": null,
466
+ "build_state": "pass",
467
+ "extension_load_state": "pass",
468
+ "suite_state": "inconclusive",
469
+ "provenance": {
470
+ "gem_url": "https://rubygems.org/downloads/puma-8.0.2.gem",
471
+ "gem_sha256": "c8ed871dfbbe66448ea9ffd46692342d9804d4071522b52b5331b7b6e7b686fb",
472
+ "source_kind": "source_tarball",
473
+ "source_url": "https://github.com/puma/puma/archive/refs/tags/v8.0.2.tar.gz",
474
+ "source_sha256": "accfcaeaa04407e5f015fe1a0d1e4179950fe2c5ef968f45568453fee811561b",
475
+ "source_relative_path": "r10-m4c/puma-8.0.2-src.tar.gz"
476
+ },
477
+ "recipe": {
478
+ "name": "puma",
479
+ "version": "8.0.2",
480
+ "source_kind": "source_tarball",
481
+ "source_url": "https://github.com/puma/puma/archive/refs/tags/v8.0.2.tar.gz",
482
+ "runner": "test_unit",
483
+ "test_glob": "test/test_*.rb",
484
+ "exclude": [],
485
+ "load_paths": [
486
+ "lib",
487
+ "test"
488
+ ],
489
+ "extconf_args": [],
490
+ "sos": [
491
+ {
492
+ "from": "lib/puma/puma_http11.so",
493
+ "to": "lib/puma/puma_http11.so"
494
+ }
495
+ ],
496
+ "test_deps": [],
497
+ "test_dep_versions": {},
498
+ "sanity": {
499
+ "requires": [
500
+ "puma"
501
+ ],
502
+ "expression": "injected_so_loaded?"
503
+ },
504
+ "recipe_fingerprint": "4c2d270f8226eb2f1bbd48d43640e84da1c4eeb8a49b30c42ee4a2492005cf8d"
505
+ },
506
+ "execution_context": {
507
+ "environment": "glibc x86_64 / ruby 3.4.5",
508
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
509
+ "host_cpu": "x86_64",
510
+ "ruby_arch": "x86_64-linux",
511
+ "cc": null,
512
+ "make": null,
513
+ "pkg_config": null,
514
+ "rubycc_mode": "control"
515
+ },
516
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
517
+ "rubycc_worktree_dirty": true
518
+ },
519
+ {
520
+ "name": "google-protobuf",
521
+ "version": "4.35.1",
522
+ "mode": "control",
523
+ "status": "pass",
524
+ "reason": null,
525
+ "sanity": true,
526
+ "evidence": [
527
+ "no rubycc traces (host cc)"
528
+ ],
529
+ "summary": {
530
+ "line": "328 tests, 532032 assertions, 0 failures, 0 errors, 2 omissions",
531
+ "tests": 328,
532
+ "assertions": 532032,
533
+ "failures": 0,
534
+ "errors": 0,
535
+ "other": {
536
+ "omissions": 2
537
+ }
538
+ },
539
+ "build_state": "pass",
540
+ "extension_load_state": "pass",
541
+ "suite_state": "pass",
542
+ "provenance": {
543
+ "gem_url": "https://rubygems.org/downloads/google-protobuf-4.35.1.gem",
544
+ "gem_sha256": "a3a6471331d918f58dfa4d014a8f6286f0af2cf4840216bde52fcf2ea3fe3726",
545
+ "source_kind": "source_tarball",
546
+ "source_url": "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v35.1.tar.gz",
547
+ "source_sha256": "22775f9376938295efa2d59a59bde4cd075a42df5a9b4d27aa9b99fa6a413bd2",
548
+ "source_relative_path": "r10-m4c/google-protobuf-4.35.1-src.tar.gz"
549
+ },
550
+ "recipe": {
551
+ "name": "google-protobuf",
552
+ "version": "4.35.1",
553
+ "source_kind": "source_tarball",
554
+ "source_url": "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v35.1.tar.gz",
555
+ "runner": "test_unit",
556
+ "test_glob": "ruby/tests/*.rb",
557
+ "exclude": [
558
+ "ruby/tests/gc_test.rb",
559
+ "ruby/tests/common_tests.rb",
560
+ "ruby/tests/*_pb.rb"
561
+ ],
562
+ "load_paths": [
563
+ "ruby/lib",
564
+ "ruby/tests"
565
+ ],
566
+ "extconf_args": [],
567
+ "sos": [
568
+ {
569
+ "from": "lib/google/protobuf_c.so",
570
+ "to": "ruby/lib/google/protobuf_c.so"
571
+ }
572
+ ],
573
+ "test_deps": [
574
+ "test-unit"
575
+ ],
576
+ "test_dep_versions": {},
577
+ "sanity": {
578
+ "requires": [
579
+ "google/protobuf"
580
+ ],
581
+ "expression": "injected_so_loaded?"
582
+ },
583
+ "recipe_fingerprint": "2d7780f5c991ef47462f16eac580674b4ddc85dac30ff10a5f007a981be62547"
584
+ },
585
+ "execution_context": {
586
+ "environment": "glibc x86_64 / ruby 3.4.5",
587
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
588
+ "host_cpu": "x86_64",
589
+ "ruby_arch": "x86_64-linux",
590
+ "cc": null,
591
+ "make": null,
592
+ "pkg_config": null,
593
+ "rubycc_mode": "control"
594
+ },
595
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
596
+ "rubycc_worktree_dirty": true
597
+ },
598
+ {
599
+ "name": "mysql2",
600
+ "version": "0.5.7",
601
+ "mode": "control",
602
+ "status": "inconclusive",
603
+ "reason": "suite_exec requires Docker container rubycc-mariadb; docker inspect reported it is not running",
604
+ "sanity": true,
605
+ "evidence": [
606
+ "no rubycc traces (host cc)"
607
+ ],
608
+ "summary": null,
609
+ "build_state": "pass",
610
+ "extension_load_state": "pass",
611
+ "suite_state": "inconclusive",
612
+ "provenance": {
613
+ "gem_url": "https://rubygems.org/downloads/mysql2-0.5.7.gem",
614
+ "gem_sha256": "ba09ede515a0ae8a7192040a1b778c0fb0f025fa5877e9be895cd325fa5e9d7b",
615
+ "source_kind": "source_tarball",
616
+ "source_url": "https://github.com/brianmario/mysql2/archive/refs/tags/0.5.7.tar.gz",
617
+ "source_sha256": "8a70979ec650c3399891e6c05f2e65ada7a4b1da7ba14aeba14ab8317c5b506b",
618
+ "source_relative_path": "r10-m4c/mysql2-0.5.7-src.tar.gz"
619
+ },
620
+ "recipe": {
621
+ "name": "mysql2",
622
+ "version": "0.5.7",
623
+ "source_kind": "source_tarball",
624
+ "source_url": "https://github.com/brianmario/mysql2/archive/refs/tags/0.5.7.tar.gz",
625
+ "runner": "rspec",
626
+ "test_glob": "spec/**/*_spec.rb",
627
+ "exclude": [],
628
+ "load_paths": [
629
+ "lib",
630
+ "spec"
631
+ ],
632
+ "extconf_args": [],
633
+ "sos": [
634
+ {
635
+ "from": "lib/mysql2/mysql2.so",
636
+ "to": "lib/mysql2/mysql2.so"
637
+ }
638
+ ],
639
+ "test_deps": [
640
+ "rspec"
641
+ ],
642
+ "test_dep_versions": {},
643
+ "sanity": {
644
+ "requires": [
645
+ "mysql2"
646
+ ],
647
+ "expression": "injected_so_loaded?"
648
+ },
649
+ "recipe_fingerprint": "962014bbfe35d2762f1a57985b12a3fdc2ceceb870775d95863ef002751c9f27"
650
+ },
651
+ "execution_context": {
652
+ "environment": "glibc x86_64 / ruby 3.4.5",
653
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
654
+ "host_cpu": "x86_64",
655
+ "ruby_arch": "x86_64-linux",
656
+ "cc": null,
657
+ "make": null,
658
+ "pkg_config": null,
659
+ "rubycc_mode": "control"
660
+ },
661
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
662
+ "rubycc_worktree_dirty": true
663
+ },
664
+ {
665
+ "name": "yajl-ruby",
666
+ "version": "1.4.3",
667
+ "mode": "control",
668
+ "status": "pass",
669
+ "reason": null,
670
+ "sanity": true,
671
+ "evidence": [
672
+ "no rubycc traces (host cc)"
673
+ ],
674
+ "summary": {
675
+ "line": "416 examples, 0 failures",
676
+ "tests": 416,
677
+ "assertions": null,
678
+ "failures": 0,
679
+ "errors": 0,
680
+ "other": {}
681
+ },
682
+ "build_state": "pass",
683
+ "extension_load_state": "pass",
684
+ "suite_state": "pass",
685
+ "provenance": {
686
+ "gem_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
687
+ "gem_sha256": "8c974d9c11ae07b0a3b6d26efea8407269b02e4138118fbe3ef0d2ec9724d1d2",
688
+ "source_kind": "gem_data_archive",
689
+ "source_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
690
+ "source_sha256": "8c974d9c11ae07b0a3b6d26efea8407269b02e4138118fbe3ef0d2ec9724d1d2",
691
+ "source_relative_path": "r10-census-cache/yajl-ruby-1.4.3.gem"
692
+ },
693
+ "recipe": {
694
+ "name": "yajl-ruby",
695
+ "version": "1.4.3",
696
+ "source_kind": "gem_data_archive",
697
+ "source_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
698
+ "runner": "rspec",
699
+ "test_glob": "spec/**/*_spec.rb",
700
+ "exclude": [],
701
+ "load_paths": [
702
+ "lib",
703
+ "spec"
704
+ ],
705
+ "extconf_args": [],
706
+ "sos": [
707
+ {
708
+ "from": "lib/yajl/yajl.so",
709
+ "to": "lib/yajl/yajl.so"
710
+ }
711
+ ],
712
+ "test_deps": [
713
+ "rspec"
714
+ ],
715
+ "test_dep_versions": {},
716
+ "sanity": {
717
+ "requires": [
718
+ "yajl"
719
+ ],
720
+ "expression": "injected_so_loaded?"
721
+ },
722
+ "recipe_fingerprint": "1c2a40e2241115a51dc050aaa9ea2dbcb960138259ff1aa8a8791ee090ed4ce4"
723
+ },
724
+ "execution_context": {
725
+ "environment": "glibc x86_64 / ruby 3.4.5",
726
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
727
+ "host_cpu": "x86_64",
728
+ "ruby_arch": "x86_64-linux",
729
+ "cc": null,
730
+ "make": null,
731
+ "pkg_config": null,
732
+ "rubycc_mode": "control"
733
+ },
734
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
735
+ "rubycc_worktree_dirty": true
736
+ }
737
+ ],
738
+ "rubycc": [
739
+ {
740
+ "name": "openssl",
741
+ "version": "4.0.2",
742
+ "mode": "rubycc",
743
+ "status": "unparsable",
744
+ "reason": "suite child exited non-zero without a test_unit summary; captured output ended in a process memory map, so the exact crash cause is not established",
745
+ "sanity": true,
746
+ "evidence": [
747
+ "gem_make.out:rmake",
748
+ "Makefile:CC=rubycc",
749
+ "mkmf.log:rubycc"
750
+ ],
751
+ "summary": null,
752
+ "build_state": "pass",
753
+ "extension_load_state": "pass",
754
+ "suite_state": "inconclusive",
755
+ "provenance": {
756
+ "gem_url": "https://rubygems.org/downloads/openssl-4.0.2.gem",
757
+ "gem_sha256": "1037ad2868ae58df9ad917891c0c0f9815a1172f6846d4bcdd508e4c2ee747c2",
758
+ "source_kind": "source_tarball",
759
+ "source_url": "https://github.com/ruby/openssl/archive/refs/tags/v4.0.2.tar.gz",
760
+ "source_sha256": "605b4d9109cf55ab64c5a4eba7b06d1df65b267777a732f392147591fe45efbb",
761
+ "source_relative_path": "r10-m4c/openssl-4.0.2-src.tar.gz"
762
+ },
763
+ "recipe": {
764
+ "name": "openssl",
765
+ "version": "4.0.2",
766
+ "source_kind": "source_tarball",
767
+ "source_url": "https://github.com/ruby/openssl/archive/refs/tags/v4.0.2.tar.gz",
768
+ "runner": "test_unit",
769
+ "test_glob": "test/**/test_*.rb",
770
+ "exclude": [],
771
+ "load_paths": [
772
+ "lib",
773
+ "test"
774
+ ],
775
+ "extconf_args": [],
776
+ "sos": [
777
+ {
778
+ "from": "lib/openssl.so",
779
+ "to": "lib/openssl.so"
780
+ }
781
+ ],
782
+ "test_deps": [
783
+ "test-unit",
784
+ "test-unit-ruby-core"
785
+ ],
786
+ "test_dep_versions": {},
787
+ "sanity": {
788
+ "requires": [
789
+ "openssl"
790
+ ],
791
+ "expression": "injected_so_loaded?"
792
+ },
793
+ "recipe_fingerprint": "c947202774f66c12d2ea8cb34637290e4ce75c8bb054e2beafd1187a77c4372c"
794
+ },
795
+ "execution_context": {
796
+ "environment": "glibc x86_64 / ruby 3.4.5",
797
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
798
+ "host_cpu": "x86_64",
799
+ "ruby_arch": "x86_64-linux",
800
+ "cc": null,
801
+ "make": null,
802
+ "pkg_config": null,
803
+ "rubycc_mode": "rubycc"
804
+ },
805
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
806
+ "rubycc_worktree_dirty": true
807
+ },
808
+ {
809
+ "name": "nio4r",
810
+ "version": "2.7.5",
811
+ "mode": "rubycc",
812
+ "status": "pass",
813
+ "reason": null,
814
+ "sanity": true,
815
+ "evidence": [
816
+ "gem_make.out:rmake",
817
+ "Makefile:CC=rubycc",
818
+ "mkmf.log:rubycc"
819
+ ],
820
+ "summary": {
821
+ "line": "112 examples, 0 failures, 0 errors, 2 pending",
822
+ "tests": 112,
823
+ "assertions": null,
824
+ "failures": 0,
825
+ "errors": 0,
826
+ "other": {
827
+ "pendings": 2
828
+ }
829
+ },
830
+ "build_state": "pass",
831
+ "extension_load_state": "pass",
832
+ "suite_state": "pass",
833
+ "provenance": {
834
+ "gem_url": "https://rubygems.org/downloads/nio4r-2.7.5.gem",
835
+ "gem_sha256": "6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1",
836
+ "source_kind": "source_tarball",
837
+ "source_url": "https://github.com/socketry/nio4r/archive/refs/tags/v2.7.5.tar.gz",
838
+ "source_sha256": "6b17580f7a84903b5c76a97bb926098cfeb012fd6189a0481f417df6d944d93f",
839
+ "source_relative_path": "r10-m4c/nio4r-2.7.5-src.tar.gz"
840
+ },
841
+ "recipe": {
842
+ "name": "nio4r",
843
+ "version": "2.7.5",
844
+ "source_kind": "source_tarball",
845
+ "source_url": "https://github.com/socketry/nio4r/archive/refs/tags/v2.7.5.tar.gz",
846
+ "runner": "rspec",
847
+ "test_glob": "spec/**/*_spec.rb",
848
+ "exclude": [],
849
+ "load_paths": [
850
+ "lib",
851
+ "spec"
852
+ ],
853
+ "extconf_args": [
854
+ "--with-cflags=-fPIC -DEV_API_STATIC"
855
+ ],
856
+ "sos": [
857
+ {
858
+ "from": "lib/nio4r_ext.so",
859
+ "to": "lib/nio4r_ext.so"
860
+ }
861
+ ],
862
+ "test_deps": [
863
+ "rspec"
864
+ ],
865
+ "test_dep_versions": {},
866
+ "sanity": {
867
+ "requires": [
868
+ "nio"
869
+ ],
870
+ "expression": "injected_so_loaded?"
871
+ },
872
+ "recipe_fingerprint": "0f3ebdf05c3f6f6bc98dad42ca265d6b568a8b46f9dffdd24996cdd2ed79e2bc"
873
+ },
874
+ "execution_context": {
875
+ "environment": "glibc x86_64 / ruby 3.4.5",
876
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
877
+ "host_cpu": "x86_64",
878
+ "ruby_arch": "x86_64-linux",
879
+ "cc": null,
880
+ "make": null,
881
+ "pkg_config": null,
882
+ "rubycc_mode": "rubycc"
883
+ },
884
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
885
+ "rubycc_worktree_dirty": true
886
+ },
887
+ {
888
+ "name": "prism",
889
+ "version": "1.8.1",
890
+ "mode": "rubycc",
891
+ "status": "pass",
892
+ "reason": null,
893
+ "sanity": true,
894
+ "evidence": [
895
+ "gem_make.out:rmake",
896
+ "Makefile:CC=rubycc",
897
+ "mkmf.log:rubycc"
898
+ ],
899
+ "summary": {
900
+ "line": "17306 tests, 1762400 assertions, 0 failures, 0 errors, 3 omissions",
901
+ "tests": 17306,
902
+ "assertions": 1762400,
903
+ "failures": 0,
904
+ "errors": 0,
905
+ "other": {
906
+ "omissions": 3
907
+ }
908
+ },
909
+ "build_state": "pass",
910
+ "extension_load_state": "pass",
911
+ "suite_state": "pass",
912
+ "provenance": {
913
+ "gem_url": "https://rubygems.org/downloads/prism-1.8.1.gem",
914
+ "gem_sha256": "b260c1844ee0c7ead9c938f7fd63b95888c87cc054dfb64043204eccff8116ac",
915
+ "source_kind": "source_tarball",
916
+ "source_url": "https://github.com/ruby/prism/archive/refs/tags/v1.8.1.tar.gz",
917
+ "source_sha256": "3e162b1d76eb02e817d306fb966d74613d17bc9ed153915e99b5849d27f3b658",
918
+ "source_relative_path": "r10-m4c/prism-1.8.1-src.tar.gz"
919
+ },
920
+ "recipe": {
921
+ "name": "prism",
922
+ "version": "1.8.1",
923
+ "source_kind": "source_tarball",
924
+ "source_url": "https://github.com/ruby/prism/archive/refs/tags/v1.8.1.tar.gz",
925
+ "runner": "test_unit",
926
+ "test_glob": "test/prism/**/*_test.rb",
927
+ "exclude": [],
928
+ "load_paths": [
929
+ "lib",
930
+ "test/prism"
931
+ ],
932
+ "extconf_args": [],
933
+ "sos": [
934
+ {
935
+ "from": "lib/prism/prism.so",
936
+ "to": "lib/prism/prism.so"
937
+ }
938
+ ],
939
+ "test_deps": [
940
+ "test-unit",
941
+ "test-unit-ruby-core"
942
+ ],
943
+ "test_dep_versions": {},
944
+ "sanity": {
945
+ "requires": [
946
+ "prism"
947
+ ],
948
+ "expression": "injected_so_loaded?"
949
+ },
950
+ "recipe_fingerprint": "584c2c0ad6b64bcb0a3926e436b63801f1a46d16503be6db8f73d40561bb7c66"
951
+ },
952
+ "execution_context": {
953
+ "environment": "glibc x86_64 / ruby 3.4.5",
954
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
955
+ "host_cpu": "x86_64",
956
+ "ruby_arch": "x86_64-linux",
957
+ "cc": null,
958
+ "make": null,
959
+ "pkg_config": null,
960
+ "rubycc_mode": "rubycc"
961
+ },
962
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
963
+ "rubycc_worktree_dirty": true
964
+ },
965
+ {
966
+ "name": "fiddle",
967
+ "version": "1.1.8",
968
+ "mode": "rubycc",
969
+ "status": "pass",
970
+ "reason": null,
971
+ "sanity": true,
972
+ "evidence": [
973
+ "gem_make.out:rmake",
974
+ "Makefile:CC=rubycc",
975
+ "mkmf.log:rubycc"
976
+ ],
977
+ "summary": {
978
+ "line": "227 tests, 615 assertions, 0 failures, 0 errors",
979
+ "tests": 227,
980
+ "assertions": 615,
981
+ "failures": 0,
982
+ "errors": 0,
983
+ "other": {}
984
+ },
985
+ "build_state": "pass",
986
+ "extension_load_state": "pass",
987
+ "suite_state": "pass",
988
+ "provenance": {
989
+ "gem_url": "https://rubygems.org/downloads/fiddle-1.1.8.gem",
990
+ "gem_sha256": "7fa8ee3627271497f3add5503acdbc3f40b32f610fc1cf49634f083ef3f32eee",
991
+ "source_kind": "source_tarball",
992
+ "source_url": "https://github.com/ruby/fiddle/archive/refs/tags/v1.1.8.tar.gz",
993
+ "source_sha256": "c74a1117bef7fbcc52f51863b84bfb9b2a3b30be2457858217fa2f18afb6d29c",
994
+ "source_relative_path": "r10-m4c/fiddle-1.1.8-src.tar.gz"
995
+ },
996
+ "recipe": {
997
+ "name": "fiddle",
998
+ "version": "1.1.8",
999
+ "source_kind": "source_tarball",
1000
+ "source_url": "https://github.com/ruby/fiddle/archive/refs/tags/v1.1.8.tar.gz",
1001
+ "runner": "test_unit",
1002
+ "test_glob": "test/fiddle/test_*.rb",
1003
+ "exclude": [],
1004
+ "load_paths": [
1005
+ "lib",
1006
+ "test/fiddle"
1007
+ ],
1008
+ "extconf_args": [],
1009
+ "sos": [
1010
+ {
1011
+ "from": "lib/fiddle.so",
1012
+ "to": "lib/fiddle.so"
1013
+ }
1014
+ ],
1015
+ "test_deps": [
1016
+ "test-unit",
1017
+ "test-unit-ruby-core"
1018
+ ],
1019
+ "test_dep_versions": {},
1020
+ "sanity": {
1021
+ "requires": [
1022
+ "fiddle"
1023
+ ],
1024
+ "expression": "injected_so_loaded?"
1025
+ },
1026
+ "recipe_fingerprint": "2da6152e5f8f3ad0389ff1fe7bdeffb0bd03c55b9d560681fa2cae0795e853c6"
1027
+ },
1028
+ "execution_context": {
1029
+ "environment": "glibc x86_64 / ruby 3.4.5",
1030
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1031
+ "host_cpu": "x86_64",
1032
+ "ruby_arch": "x86_64-linux",
1033
+ "cc": null,
1034
+ "make": null,
1035
+ "pkg_config": null,
1036
+ "rubycc_mode": "rubycc"
1037
+ },
1038
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1039
+ "rubycc_worktree_dirty": true
1040
+ },
1041
+ {
1042
+ "name": "bootsnap",
1043
+ "version": "1.24.6",
1044
+ "mode": "rubycc",
1045
+ "status": "unparsable",
1046
+ "reason": "suite exited without a parseable summary; status was not promoted to pass",
1047
+ "sanity": true,
1048
+ "evidence": [
1049
+ "gem_make.out:rmake",
1050
+ "Makefile:CC=rubycc",
1051
+ "mkmf.log:rubycc"
1052
+ ],
1053
+ "summary": null,
1054
+ "build_state": "pass",
1055
+ "extension_load_state": "pass",
1056
+ "suite_state": "inconclusive",
1057
+ "provenance": {
1058
+ "gem_url": "https://rubygems.org/downloads/bootsnap-1.24.6.gem",
1059
+ "gem_sha256": "c60bab88c70332290f0a2636a288f675299eb4f804a02a3c085b42eca9da164a",
1060
+ "source_kind": "source_tarball",
1061
+ "source_url": "https://github.com/Shopify/bootsnap/archive/refs/tags/v1.24.6.tar.gz",
1062
+ "source_sha256": "002ec58747f174cce445802d5256f8b84f59af917fbfbad54619ff06888300e7",
1063
+ "source_relative_path": "r10-m4c/bootsnap-1.24.6-src.tar.gz"
1064
+ },
1065
+ "recipe": {
1066
+ "name": "bootsnap",
1067
+ "version": "1.24.6",
1068
+ "source_kind": "source_tarball",
1069
+ "source_url": "https://github.com/Shopify/bootsnap/archive/refs/tags/v1.24.6.tar.gz",
1070
+ "runner": "test_unit",
1071
+ "test_glob": "test/**/*_test.rb",
1072
+ "exclude": [],
1073
+ "load_paths": [
1074
+ "lib",
1075
+ "test"
1076
+ ],
1077
+ "extconf_args": [],
1078
+ "sos": [
1079
+ {
1080
+ "from": "lib/bootsnap/bootsnap.so",
1081
+ "to": "lib/bootsnap/bootsnap.so"
1082
+ }
1083
+ ],
1084
+ "test_deps": [
1085
+ "minitest",
1086
+ "mocha"
1087
+ ],
1088
+ "test_dep_versions": {
1089
+ "minitest": "5.25.5"
1090
+ },
1091
+ "sanity": {
1092
+ "requires": [
1093
+ "bootsnap/compile_cache",
1094
+ "bootsnap/bootsnap"
1095
+ ],
1096
+ "expression": "injected_so_loaded?"
1097
+ },
1098
+ "recipe_fingerprint": "0fc66f9b35d8ebfafe6834db1d2b74ff69459aeb45161915d0b13de6ceb6eb6d"
1099
+ },
1100
+ "execution_context": {
1101
+ "environment": "glibc x86_64 / ruby 3.4.5",
1102
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1103
+ "host_cpu": "x86_64",
1104
+ "ruby_arch": "x86_64-linux",
1105
+ "cc": null,
1106
+ "make": null,
1107
+ "pkg_config": null,
1108
+ "rubycc_mode": "rubycc"
1109
+ },
1110
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1111
+ "rubycc_worktree_dirty": true
1112
+ },
1113
+ {
1114
+ "name": "oj",
1115
+ "version": "3.17.4",
1116
+ "mode": "rubycc",
1117
+ "status": "fail",
1118
+ "reason": "1 failure / 3 errors",
1119
+ "sanity": true,
1120
+ "evidence": [
1121
+ "gem_make.out:rmake",
1122
+ "Makefile:CC=rubycc"
1123
+ ],
1124
+ "summary": {
1125
+ "line": "627 tests, 9584 assertions, 1 failures, 3 errors",
1126
+ "tests": 627,
1127
+ "assertions": 9584,
1128
+ "failures": 1,
1129
+ "errors": 3,
1130
+ "other": {}
1131
+ },
1132
+ "build_state": "pass",
1133
+ "extension_load_state": "pass",
1134
+ "suite_state": "fail",
1135
+ "provenance": {
1136
+ "gem_url": "https://rubygems.org/downloads/oj-3.17.4.gem",
1137
+ "gem_sha256": "733fe3bcb7a5d985bd2e943620b7bea1bffb2809318af7021c841b833a6858e1",
1138
+ "source_kind": "source_tarball",
1139
+ "source_url": "https://github.com/ohler55/oj/archive/refs/tags/v3.17.4.tar.gz",
1140
+ "source_sha256": "23826ff9508afe722ae127bca3517c1fef50c08efd44678bd3906bde9b3ee1de",
1141
+ "source_relative_path": "r10-m4c/oj-3.17.4-src.tar.gz"
1142
+ },
1143
+ "recipe": {
1144
+ "name": "oj",
1145
+ "version": "3.17.4",
1146
+ "source_kind": "source_tarball",
1147
+ "source_url": "https://github.com/ohler55/oj/archive/refs/tags/v3.17.4.tar.gz",
1148
+ "runner": "test_unit",
1149
+ "test_glob": "test/test_*.rb",
1150
+ "exclude": [],
1151
+ "load_paths": [
1152
+ "lib",
1153
+ "test",
1154
+ "ext"
1155
+ ],
1156
+ "extconf_args": [],
1157
+ "sos": [
1158
+ {
1159
+ "from": "lib/oj/oj.so",
1160
+ "to": "lib/oj/oj.so"
1161
+ }
1162
+ ],
1163
+ "test_deps": [
1164
+ "minitest"
1165
+ ],
1166
+ "test_dep_versions": {
1167
+ "minitest": "5.25.5"
1168
+ },
1169
+ "sanity": {
1170
+ "requires": [
1171
+ "oj"
1172
+ ],
1173
+ "expression": "injected_so_loaded?"
1174
+ },
1175
+ "recipe_fingerprint": "212e2731f0e896e3df4d700f661edbc72d4a4f6b15899641429cdc41d76aaed3"
1176
+ },
1177
+ "execution_context": {
1178
+ "environment": "glibc x86_64 / ruby 3.4.5",
1179
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1180
+ "host_cpu": "x86_64",
1181
+ "ruby_arch": "x86_64-linux",
1182
+ "cc": null,
1183
+ "make": null,
1184
+ "pkg_config": null,
1185
+ "rubycc_mode": "rubycc"
1186
+ },
1187
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1188
+ "rubycc_worktree_dirty": true
1189
+ },
1190
+ {
1191
+ "name": "puma",
1192
+ "version": "8.0.2",
1193
+ "mode": "rubycc",
1194
+ "status": "unparsable",
1195
+ "reason": "suite exited without a parseable summary; status was not promoted to pass",
1196
+ "sanity": true,
1197
+ "evidence": [
1198
+ "gem_make.out:rmake",
1199
+ "Makefile:CC=rubycc",
1200
+ "mkmf.log:rubycc"
1201
+ ],
1202
+ "summary": null,
1203
+ "build_state": "pass",
1204
+ "extension_load_state": "pass",
1205
+ "suite_state": "inconclusive",
1206
+ "provenance": {
1207
+ "gem_url": "https://rubygems.org/downloads/puma-8.0.2.gem",
1208
+ "gem_sha256": "c8ed871dfbbe66448ea9ffd46692342d9804d4071522b52b5331b7b6e7b686fb",
1209
+ "source_kind": "source_tarball",
1210
+ "source_url": "https://github.com/puma/puma/archive/refs/tags/v8.0.2.tar.gz",
1211
+ "source_sha256": "accfcaeaa04407e5f015fe1a0d1e4179950fe2c5ef968f45568453fee811561b",
1212
+ "source_relative_path": "r10-m4c/puma-8.0.2-src.tar.gz"
1213
+ },
1214
+ "recipe": {
1215
+ "name": "puma",
1216
+ "version": "8.0.2",
1217
+ "source_kind": "source_tarball",
1218
+ "source_url": "https://github.com/puma/puma/archive/refs/tags/v8.0.2.tar.gz",
1219
+ "runner": "test_unit",
1220
+ "test_glob": "test/test_*.rb",
1221
+ "exclude": [],
1222
+ "load_paths": [
1223
+ "lib",
1224
+ "test"
1225
+ ],
1226
+ "extconf_args": [],
1227
+ "sos": [
1228
+ {
1229
+ "from": "lib/puma/puma_http11.so",
1230
+ "to": "lib/puma/puma_http11.so"
1231
+ }
1232
+ ],
1233
+ "test_deps": [],
1234
+ "test_dep_versions": {},
1235
+ "sanity": {
1236
+ "requires": [
1237
+ "puma"
1238
+ ],
1239
+ "expression": "injected_so_loaded?"
1240
+ },
1241
+ "recipe_fingerprint": "4c2d270f8226eb2f1bbd48d43640e84da1c4eeb8a49b30c42ee4a2492005cf8d"
1242
+ },
1243
+ "execution_context": {
1244
+ "environment": "glibc x86_64 / ruby 3.4.5",
1245
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1246
+ "host_cpu": "x86_64",
1247
+ "ruby_arch": "x86_64-linux",
1248
+ "cc": null,
1249
+ "make": null,
1250
+ "pkg_config": null,
1251
+ "rubycc_mode": "rubycc"
1252
+ },
1253
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1254
+ "rubycc_worktree_dirty": true
1255
+ },
1256
+ {
1257
+ "name": "google-protobuf",
1258
+ "version": "4.35.1",
1259
+ "mode": "rubycc",
1260
+ "status": "pass",
1261
+ "reason": null,
1262
+ "sanity": true,
1263
+ "evidence": [
1264
+ "gem_make.out:rmake (overwritten by later extension; recipe-specific exception)",
1265
+ "Makefile:CC=rubycc"
1266
+ ],
1267
+ "summary": {
1268
+ "line": "328 tests, 577046 assertions, 0 failures, 0 errors, 2 omissions",
1269
+ "tests": 328,
1270
+ "assertions": 577046,
1271
+ "failures": 0,
1272
+ "errors": 0,
1273
+ "other": {
1274
+ "omissions": 2
1275
+ }
1276
+ },
1277
+ "build_state": "pass",
1278
+ "extension_load_state": "pass",
1279
+ "suite_state": "pass",
1280
+ "provenance": {
1281
+ "gem_url": "https://rubygems.org/downloads/google-protobuf-4.35.1.gem",
1282
+ "gem_sha256": "a3a6471331d918f58dfa4d014a8f6286f0af2cf4840216bde52fcf2ea3fe3726",
1283
+ "source_kind": "source_tarball",
1284
+ "source_url": "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v35.1.tar.gz",
1285
+ "source_sha256": "22775f9376938295efa2d59a59bde4cd075a42df5a9b4d27aa9b99fa6a413bd2",
1286
+ "source_relative_path": "r10-m4c/google-protobuf-4.35.1-src.tar.gz"
1287
+ },
1288
+ "recipe": {
1289
+ "name": "google-protobuf",
1290
+ "version": "4.35.1",
1291
+ "source_kind": "source_tarball",
1292
+ "source_url": "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v35.1.tar.gz",
1293
+ "runner": "test_unit",
1294
+ "test_glob": "ruby/tests/*.rb",
1295
+ "exclude": [
1296
+ "ruby/tests/gc_test.rb",
1297
+ "ruby/tests/common_tests.rb",
1298
+ "ruby/tests/*_pb.rb"
1299
+ ],
1300
+ "load_paths": [
1301
+ "ruby/lib",
1302
+ "ruby/tests"
1303
+ ],
1304
+ "extconf_args": [],
1305
+ "sos": [
1306
+ {
1307
+ "from": "lib/google/protobuf_c.so",
1308
+ "to": "ruby/lib/google/protobuf_c.so"
1309
+ }
1310
+ ],
1311
+ "test_deps": [
1312
+ "test-unit"
1313
+ ],
1314
+ "test_dep_versions": {},
1315
+ "sanity": {
1316
+ "requires": [
1317
+ "google/protobuf"
1318
+ ],
1319
+ "expression": "injected_so_loaded?"
1320
+ },
1321
+ "recipe_fingerprint": "2d7780f5c991ef47462f16eac580674b4ddc85dac30ff10a5f007a981be62547"
1322
+ },
1323
+ "execution_context": {
1324
+ "environment": "glibc x86_64 / ruby 3.4.5",
1325
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1326
+ "host_cpu": "x86_64",
1327
+ "ruby_arch": "x86_64-linux",
1328
+ "cc": null,
1329
+ "make": null,
1330
+ "pkg_config": null,
1331
+ "rubycc_mode": "rubycc"
1332
+ },
1333
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1334
+ "rubycc_worktree_dirty": true
1335
+ },
1336
+ {
1337
+ "name": "mysql2",
1338
+ "version": "0.5.7",
1339
+ "mode": "rubycc",
1340
+ "status": "inconclusive",
1341
+ "reason": "suite_exec requires Docker container rubycc-mariadb; docker inspect reported it is not running",
1342
+ "sanity": true,
1343
+ "evidence": [
1344
+ "rubycc build completed; suite precondition stopped before final table"
1345
+ ],
1346
+ "summary": null,
1347
+ "build_state": "pass",
1348
+ "extension_load_state": "pass",
1349
+ "suite_state": "inconclusive",
1350
+ "provenance": {
1351
+ "gem_url": "https://rubygems.org/downloads/mysql2-0.5.7.gem",
1352
+ "gem_sha256": "ba09ede515a0ae8a7192040a1b778c0fb0f025fa5877e9be895cd325fa5e9d7b",
1353
+ "source_kind": "source_tarball",
1354
+ "source_url": "https://github.com/brianmario/mysql2/archive/refs/tags/0.5.7.tar.gz",
1355
+ "source_sha256": "8a70979ec650c3399891e6c05f2e65ada7a4b1da7ba14aeba14ab8317c5b506b",
1356
+ "source_relative_path": "r10-m4c/mysql2-0.5.7-src.tar.gz"
1357
+ },
1358
+ "recipe": {
1359
+ "name": "mysql2",
1360
+ "version": "0.5.7",
1361
+ "source_kind": "source_tarball",
1362
+ "source_url": "https://github.com/brianmario/mysql2/archive/refs/tags/0.5.7.tar.gz",
1363
+ "runner": "rspec",
1364
+ "test_glob": "spec/**/*_spec.rb",
1365
+ "exclude": [],
1366
+ "load_paths": [
1367
+ "lib",
1368
+ "spec"
1369
+ ],
1370
+ "extconf_args": [],
1371
+ "sos": [
1372
+ {
1373
+ "from": "lib/mysql2/mysql2.so",
1374
+ "to": "lib/mysql2/mysql2.so"
1375
+ }
1376
+ ],
1377
+ "test_deps": [
1378
+ "rspec"
1379
+ ],
1380
+ "test_dep_versions": {},
1381
+ "sanity": {
1382
+ "requires": [
1383
+ "mysql2"
1384
+ ],
1385
+ "expression": "injected_so_loaded?"
1386
+ },
1387
+ "recipe_fingerprint": "962014bbfe35d2762f1a57985b12a3fdc2ceceb870775d95863ef002751c9f27"
1388
+ },
1389
+ "execution_context": {
1390
+ "environment": "glibc x86_64 / ruby 3.4.5",
1391
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1392
+ "host_cpu": "x86_64",
1393
+ "ruby_arch": "x86_64-linux",
1394
+ "cc": null,
1395
+ "make": null,
1396
+ "pkg_config": null,
1397
+ "rubycc_mode": "rubycc"
1398
+ },
1399
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1400
+ "rubycc_worktree_dirty": true
1401
+ },
1402
+ {
1403
+ "name": "yajl-ruby",
1404
+ "version": "1.4.3",
1405
+ "mode": "rubycc",
1406
+ "status": "pass",
1407
+ "reason": null,
1408
+ "sanity": true,
1409
+ "evidence": [
1410
+ "gem_make.out:rmake",
1411
+ "Makefile:CC=rubycc"
1412
+ ],
1413
+ "summary": {
1414
+ "line": "416 examples, 0 failures",
1415
+ "tests": 416,
1416
+ "assertions": null,
1417
+ "failures": 0,
1418
+ "errors": 0,
1419
+ "other": {}
1420
+ },
1421
+ "build_state": "pass",
1422
+ "extension_load_state": "pass",
1423
+ "suite_state": "pass",
1424
+ "provenance": {
1425
+ "gem_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
1426
+ "gem_sha256": "8c974d9c11ae07b0a3b6d26efea8407269b02e4138118fbe3ef0d2ec9724d1d2",
1427
+ "source_kind": "gem_data_archive",
1428
+ "source_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
1429
+ "source_sha256": "8c974d9c11ae07b0a3b6d26efea8407269b02e4138118fbe3ef0d2ec9724d1d2",
1430
+ "source_relative_path": "r10-census-cache/yajl-ruby-1.4.3.gem"
1431
+ },
1432
+ "recipe": {
1433
+ "name": "yajl-ruby",
1434
+ "version": "1.4.3",
1435
+ "source_kind": "gem_data_archive",
1436
+ "source_url": "https://rubygems.org/downloads/yajl-ruby-1.4.3.gem",
1437
+ "runner": "rspec",
1438
+ "test_glob": "spec/**/*_spec.rb",
1439
+ "exclude": [],
1440
+ "load_paths": [
1441
+ "lib",
1442
+ "spec"
1443
+ ],
1444
+ "extconf_args": [],
1445
+ "sos": [
1446
+ {
1447
+ "from": "lib/yajl/yajl.so",
1448
+ "to": "lib/yajl/yajl.so"
1449
+ }
1450
+ ],
1451
+ "test_deps": [
1452
+ "rspec"
1453
+ ],
1454
+ "test_dep_versions": {},
1455
+ "sanity": {
1456
+ "requires": [
1457
+ "yajl"
1458
+ ],
1459
+ "expression": "injected_so_loaded?"
1460
+ },
1461
+ "recipe_fingerprint": "1c2a40e2241115a51dc050aaa9ea2dbcb960138259ff1aa8a8791ee090ed4ce4"
1462
+ },
1463
+ "execution_context": {
1464
+ "environment": "glibc x86_64 / ruby 3.4.5",
1465
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1466
+ "host_cpu": "x86_64",
1467
+ "ruby_arch": "x86_64-linux",
1468
+ "cc": null,
1469
+ "make": null,
1470
+ "pkg_config": null,
1471
+ "rubycc_mode": "rubycc"
1472
+ },
1473
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1474
+ "rubycc_worktree_dirty": true
1475
+ }
1476
+ ],
1477
+ "additional_artifact": "data/r10_verification_rbs.json",
1478
+ "execution_context": {
1479
+ "environment": "glibc x86_64 / ruby 3.4.5",
1480
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1481
+ "host_cpu": "x86_64",
1482
+ "ruby_arch": "x86_64-linux",
1483
+ "cc": null,
1484
+ "make": null,
1485
+ "pkg_config": null
1486
+ },
1487
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1488
+ "rubycc_worktree_dirty": true
1489
+ }