<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/.github/auto_request_review.yml, branch v4.0.2</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>auto_request_review.yml: Update path for jit related docs</title>
<updated>2025-12-11T20:45:56+00:00</updated>
<author>
<name>Alan Wu</name>
<email>XrXr@users.noreply.github.com</email>
</author>
<published>2025-12-11T08:06:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f8f8ff61062080887ad26a36bd58b51e631eee80'/>
<id>f8f8ff61062080887ad26a36bd58b51e631eee80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ZJIT: Support make in zjit_bisect.rb (#14584)</title>
<updated>2025-10-22T17:56:02+00:00</updated>
<author>
<name>Max Bernstein</name>
<email>rubybugs@bernsteinbear.com</email>
</author>
<published>2025-10-22T17:56:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=87fdd6d53b51f2d5eb944c7f97aebf728b1ab439'/>
<id>87fdd6d53b51f2d5eb944c7f97aebf728b1ab439</id>
<content type='text'>
Find ZJIT options in RUN_OPTS/SPECOPTS and put new ones from the bisection script
there too.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Find ZJIT options in RUN_OPTS/SPECOPTS and put new ones from the bisection script
there too.</pre>
</div>
</content>
</entry>
<entry>
<title>Make it easier to reproduce commands from CI (#14609)</title>
<updated>2025-09-19T22:00:27+00:00</updated>
<author>
<name>Randy Stauner</name>
<email>randy@r4s6.net</email>
</author>
<published>2025-09-19T22:00:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f4482b047fa3facc78cf5d3439a70d0251862da3'/>
<id>f4482b047fa3facc78cf5d3439a70d0251862da3</id>
<content type='text'>
* Comment on not auto-requesting reviews for workflow files

* Make it easier to reproduce matrix test_task commands from CI

Expand the interpolated command so that it is easier to see exactly what command was run.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Comment on not auto-requesting reviews for workflow files

* Make it easier to reproduce matrix test_task commands from CI

Expand the interpolated command so that it is easier to see exactly what command was run.</pre>
</div>
</content>
</entry>
<entry>
<title>ZJIT: Fix backtraces on opt_new (#14461)</title>
<updated>2025-09-08T16:50:33+00:00</updated>
<author>
<name>Takashi Kokubun</name>
<email>takashikkbn@gmail.com</email>
</author>
<published>2025-09-08T16:50:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=866e474ac854db0655a89a801f9bc871e9ec1ce0'/>
<id>866e474ac854db0655a89a801f9bc871e9ec1ce0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ZJIT: Add ZJIT test exclusion files to jit team review targets</title>
<updated>2025-07-16T21:31:19+00:00</updated>
<author>
<name>Stan Lo</name>
<email>stan.lo@shopify.com</email>
</author>
<published>2025-07-16T20:42:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=616df508c796e98a6ca112627103c2e833c51619'/>
<id>616df508c796e98a6ca112627103c2e833c51619</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>YJIT: ZJIT: Allow both JITs in the same build</title>
<updated>2025-05-14T15:39:03+00:00</updated>
<author>
<name>Alan Wu</name>
<email>XrXr@users.noreply.github.com</email>
</author>
<published>2025-05-06T15:19:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=92b218fbc379fe85792eb060b71520e271971335'/>
<id>92b218fbc379fe85792eb060b71520e271971335</id>
<content type='text'>
This commit allows building YJIT and ZJIT simultaneously, a "combo
build". Previously, `./configure --enable-yjit --enable-zjit` failed. At
runtime, though, only one of the two can be enabled at a time.

Add a root Cargo workspace that contains both the yjit and zjit crate.
The common Rust build integration mechanisms are factored out into
defs/jit.mk.

Combo YJIT+ZJIT dev builds are supported; if either JIT uses
`--enable-*=dev`, both of them are built in dev mode.

The combo build requires Cargo, but building one JIT at a time with only
rustc in release build remains supported.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit allows building YJIT and ZJIT simultaneously, a "combo
build". Previously, `./configure --enable-yjit --enable-zjit` failed. At
runtime, though, only one of the two can be enabled at a time.

Add a root Cargo workspace that contains both the yjit and zjit crate.
The common Rust build integration mechanisms are factored out into
defs/jit.mk.

Combo YJIT+ZJIT dev builds are supported; if either JIT uses
`--enable-*=dev`, both of them are built in dev mode.

The combo build requires Cargo, but building one JIT at a time with only
rustc in release build remains supported.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update auto_request_review config for YJIT/ZJIT (#13209)</title>
<updated>2025-04-29T22:54:25+00:00</updated>
<author>
<name>Takashi Kokubun</name>
<email>takashikkbn@gmail.com</email>
</author>
<published>2025-04-29T22:54:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6f1caa561c4d362220674e5d07502f6477059dc4'/>
<id>6f1caa561c4d362220674e5d07502f6477059dc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make yjit team auto-review ZJIT PRs</title>
<updated>2025-04-22T15:50:55+00:00</updated>
<author>
<name>Max Bernstein</name>
<email>max@bernsteinbear.com</email>
</author>
<published>2025-04-22T15:50:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=87d00142d24fb73d0b1db6d208331d2cc9e6bf2a'/>
<id>87d00142d24fb73d0b1db6d208331d2cc9e6bf2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Migrate auto_request_review back to CODEOWNERS" (#10441)</title>
<updated>2024-04-03T17:38:00+00:00</updated>
<author>
<name>Takashi Kokubun</name>
<email>takashikkbn@gmail.com</email>
</author>
<published>2024-04-03T17:38:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8388604a4c4028ac96e7af23dd5bf5928e4272e0'/>
<id>8388604a4c4028ac96e7af23dd5bf5928e4272e0</id>
<content type='text'>
Revert "Migrate auto_request_review back to CODEOWNERS (#10133)"

This reverts commit c5b568bab6a1401df385331e4b6ed6209fe4071d.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Revert "Migrate auto_request_review back to CODEOWNERS (#10133)"

This reverts commit c5b568bab6a1401df385331e4b6ed6209fe4071d.</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate auto_request_review back to CODEOWNERS (#10133)</title>
<updated>2024-02-28T18:45:24+00:00</updated>
<author>
<name>Takashi Kokubun</name>
<email>takashikkbn@gmail.com</email>
</author>
<published>2024-02-28T18:45:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c5b568bab6a1401df385331e4b6ed6209fe4071d'/>
<id>c5b568bab6a1401df385331e4b6ed6209fe4071d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
