-
-
Notifications
You must be signed in to change notification settings - Fork 388
Merging specs from JRuby and other sources
Once per month, specs from all sources are merged together in this repo.
Synchronizing specs between the ruby/spec repository and Ruby/JRuby/TruffleRuby should be performed in the following order:
- Upstreaming changes from Ruby implementations:
- Pull changes made to mspec and push them to
ruby/mspec
- Pull changes made to ruby specs and push them to
ruby/spec
- Pull changes made to mspec and push them to
- Downstreaming changes from
ruby/mspec
andruby/spec
back to Ruby implementations:- Push
ruby/mspec
changes to implementations - Push
ruby/spec
changes to implementations
- Push
Most of the work is already automated by the sync-rubyspec.rb script.
To check locally that new specs pass on all supported Ruby versions specs will be run on the lowest and the highest supported Ruby versions. To switch between Ruby versions a chruby
command is used. Use https://github.com/postmodern/chruby to install it.
If ZSH is used locally then chruby
should be installed not only in ~/.zshrc
but also in ~/.zshenv
to be available in non-interactive sessions (when the script runs the chruby
command).
Get the lowest and the highest supported (by ruby/spec
) Ruby versions from the CI config. Use ruby-install
or ruby-build
to install them to the ~/.rubies
directory . The specs also will be run on the current Ruby head.
It's expected by the script that MSpec and ruby/spec
working directories are siblings:
mspec
rubyspec
The Ruby, JRuby and TruffleRuby Git repositories will be cloned by the script into the mspec/tool/sync
directory.
- Check if there are any changes under
spec/mspec
in TruffleRuby, JRuby, Ruby (andgit checkout master && git pull
in each) - If so:
cd mspec/tool/sync
ruby sync-rubyspec.rb --mspec mri
ruby sync-rubyspec.rb --mspec jruby
ruby sync-rubyspec.rb --mspec truffleruby
- Build Ruby head
-
cd mspec/tool/sync
,ruby sync-rubyspec.rb mri
-
cd mspec/tool/sync
,ruby sync-rubyspec.rb jruby
-
cd mspec/tool/sync
,ruby sync-rubyspec.rb truffleruby
-
cd rubyspec
,git push
- Check ruby/spec CI and fix it until gets green
Use TEST_MASTER=false ...
to skip testing against Ruby head.
The main instruction is located here. But in short the following commands should be executed locally in the Ruby working directory after cloning Ruby Git repository:
./autogen.sh
mkdir ~/.rubies
./configure --prefix="${HOME}/.rubies/ruby-master" --disable-install-doc
make install
Ruby dev build will be available as ruby-master
with chruby
command.
It is also possible to use ruby-build to install ruby-dev
instead.
The Ruby, JRuby and TruffleRuby Git repositories should be cloned (or reuse ones in mspec/tool/sync
)
On macOS pbpaste
could be used instead of xsel
command.
cd ruby
spec/mspec/tool/pull-latest-mspec-spec
make test-spec MSPECOPT="-j"
make test-bundled-gems-spec
- Run the following commands:
cd jruby
git checkout -b update-specs
spec/mspec/tool/pull-latest-mspec-spec
- Make a PR (Milestone: Non-Release)
-
Check CI, tag failed specs with
xsel -b | spec/mspec/tool/tag_from_output.rb
- Run the commands:
cd truffleruby
git checkout -b bd/update-specs-YYYYMMDD
spec/mspec/tool/pull-latest-mspec-spec
jt --build test fast
- Commit slow tags (message:
Add slow tags
) - Tag failed specs with
xsel -b | spec/mspec/tool/tag_from_output.rb
(message:Add tags for new failing specs
) - Make a PR