Prerequisites:
- A Java 7-compatible (or higher) Java development kit (JDK).
- If
JAVA_HOME
is not set on Mac OS X:export JAVA_HOME=$(/usr/libexec/java_home)
- If
- Maven 3+
- Apache Ant 1.8+ (see jruby#2236)
- make and a C++ compiler for installing the jruby-launcher gem
JRuby uses Maven for building and bootstrapping itself, along with Rake, RSpec, and MSpec for running integration tests.
The first time you enter a new source dump of JRuby (from a src zip or from a git clone), you need to build the lib/jruby.jar. The command to execute is:
./mvnw
This will run the default "install" goal (mvn install
) and will do all of the following:
- Compile JRuby
- Compile JRuby-Truffle and place it in
lib/jruby-truffle.jar
- Build
lib/jruby.jar
, needed for running at command line - It will install the default gems specifications
lib/ruby/gems/shared/specifications/default/
and the ruby files of those gems inlib/ruby/stdlib/
.
The environment is now suitable for running Ruby applications.
Note: RVM users must first run:
rvm use system
to make sure you do not use another Ruby's gems or execute another Ruby implementation.
After building lib/jruby.jar, JRuby can be run with the bin/jruby
executable. If the jruby-launcher
gem installed successfully, this will be a native
executable for your platform; otherwise, it will be a copy of the
bin/jruby.bash
bash script.
RubyGems is installed by default, and available in bin/gem
. It will
attempt to locate the jruby
executable using /usr/bin/env
, so you
will need the bin
dir in your PATH
environment or you will need to
call it via JRuby using jruby -S gem ...
.
The -S
flag will run any script installed in JRuby's bin dir by RubyGems.
This can be a simple way to ensure you're running the JRuby (or Ruby) version
you think you are.
JRuby employs a large suite of tests, so there are many ways you can verify that JRuby is still fully functional.
For this only the pom.rb needs to edited. using mvn-3.3.x or the maven wrapper ./mvnw
will generate the pom.xml file where needed. For the jar files of the build those pom.xml will be generated for some use-cases, i.e. some IDEs need them.
To regenerate the pom.xml just run ./mvnw
which will create them.
In order to prepare JRuby for testing, you must bootstrap the dev environment. This will do the following:
- Install rspec, rake, minitest, minitest-excludes, and dependencies needed to run integration tests.
mvn -Pbootstrap
In case there is a problem with installing the jruby-launcher (due to missing compiler or so) use
mvn -Pbootstrap-no-launcher
This only needs to be run once to install these gems or if you update one of the gems to a newer version or clean out all installed gems.
After changing Java code, you can recompile quickly by running one of the jar files by
mvn -pl core
mvn -pl truffle
For normal day-to-day testing, we recommend running the Ruby (MRI) tests via the following rake command:
bin/jruby -S rake test:mri
This suite takes a while to complete, so if you want to run an individual file from MRI's tests (under test/mri), use one of the following commands:
jruby <test file> -n <specific test method>
EXCLUDES=test/mri/excludes bin/jruby -r test/mri_test_env.rb test/mri/runner.rb -q -- <test file>
bin/jruby spec/mspec/bin/mspec run spec/ruby/core/symbol/length_spec.rb
bin/jruby spec/mspec/bin/mspec run -T-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005 spec/ruby/core/symbol/length_spec.rb
Additional tests may be run through mspec.
bin/jruby -S mspec -B spec/jruby.2.2.mspec -t bin/jruby -G fails ci <test files>
For more complete assurance, you can also run 1.9 RubySpecs via the following command:
jruby spec/mspec/bin/mspec ci
And if you are making changes that would affect JRuby's core runtime or embedding APIs, you should run JRuby's Java-based unit tests via
mvn -Ptest
On travis the following tests will run
mvn -Ptest
mvn -Prake -Dtask=test:extended
mvn -Prake -Dtask=spec:ci\_interpreted\_travis
mvn -Ptruffle
There are some maven integration tests (i.e. consistency test if all gems are included, osgi test, etc) for the various distributions of JRuby which can be invoked with
mvn -Pmain -Dinvoker.skip=false
mvn -Pcomplete -Dinvoker.skip=false
mvn -Pdist -Dinvoker.skip=false
Our CI runs the following three commands (in essence):
rake test:extended
jruby spec/mspec/bin/mspec ci
jruby --1.8 spec/mspec/bin/mspec ci
The complete CI test suite will take anywhere from 20 to 45 minutes to complete, but provides the most accurate indication of the stability of your local JRuby source.
maven integration test will use the packed maven artifact to run the tests in a forked maven instance. these maven projects are locatated in
maven/jruby/src/it
maven/jruby-complete/src/it
maven/jruby-jars/src/it
maven/jruby-dist/src/it
to trigger the tests with the build:
mvn -Pmain -Dinvoker.skip=false
mvn -Pcomplete -Dinvoker.skip=false
mvn -Pdist -Dinvoker.skip=false
mvn -Pjruby-jars -Dinvoker.skip=false
to pick a particular test add the name of the directory inside the respective src/it folder, like (wildcards are possible):
mvn -Pmain -Dinvoker.skip=false -Dinvoker.test=integrity
mvn -Pmain -Dinvoker.skip=false -Dinvoker.test=j2ee*
mvn -Pmain -Dinvoker.skip=false -Dinvoker.test=osgi*
To clean the build it is important to use the same profile for the clean as what you want to build. the best way to clean build something is, i.e. jruby-jars
mvn clean install -Pjruby-jars
this first cleans everything and then starts the new build in one go !
Cleaning the build may be necessary after switching to a different version of JRuby (for example, after switching git branches) to ensure that everything is rebuilt properly.
NOTE: mvn clean
just cleans the jruby-core artifact and the ./lib/jruby.jar !
clean everything:
mvn -Pclean
all distribution packages need maven-3.3.x or the use of supplied maven wrapper. all examples below will show the use of the maven wrapper.
###the tar.gz and zip distribution packages###
./mvnw -Pdist
the files will be found in ./maven/jruby-dist/target
###jruby-complete.jar###
./mvnw -Pcomplete
the file will be in ./maven/jruby-complete/target
###jruby maven artifacts###
./mvnw -Pmain
and those files will be installed in you maven local-repository ready to use with maven, ivy, buildr, etc
###jruby jars gem###
./mvnw -Pjruby-jars
the gem will be in ./maven/jruby-jars/pkg
./mvnw -Pall
this will also clean the ext directories, i.e. a new build will then use the latest code from there for lib/ruby
./mvnw -Pclean
first set the new version in the file VERSION inside the root directory and then to deploy the maven artifact to sonatype oss execute:
./mvnw clean deploy -Psonatype-oss-release
go to oss.sonatype.org and close the deployment which will check if all 'required' files are in place and then finally push the release to maven central and . . .
After the release set the new development version in VERSION and generate the pom.xml files
./mvnw