Skip to content

Commit

Permalink
[build] add (and test) a profile for JRuby 9.1.2.0
Browse files Browse the repository at this point in the history
kares committed Jun 8, 2016
1 parent dcf482c commit 144412f
Showing 3 changed files with 43 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ env:
- TEST_PROFILE=test-9.0.1.0
- TEST_PROFILE=test-9.0.5.0
- TEST_PROFILE=test-9.1.1.0
- TEST_PROFILE=test-9.1.2.0

install: if [[ -v BUNDLE_INSTALL ]]; then jruby -S bundle install; else echo ""; fi

@@ -70,6 +71,9 @@ matrix:
- jdk: oraclejdk7
env: TEST_COMMAND="jruby -S rake integration:install integration:test"
rvm: jruby-9.1.1.0
- jdk: oraclejdk8
env: TEST_COMMAND="jruby -S rake integration:install integration:test"
rvm: jruby-9.1.2.0
notifications:
irc:
channels:
2 changes: 1 addition & 1 deletion Mavenfile
Original file line number Diff line number Diff line change
@@ -171,7 +171,7 @@ end

}

jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.0.0 9.1.1.0 }
jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.0.0 9.1.1.0 9.1.2.0 }

jruby_9_K_versions.each { |version|
profile :id => "test-#{version}" do
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -949,6 +949,44 @@ DO NOT MODIFIY - GENERATED CODE
<jruby.versions>9.1.1.0</jruby.versions>
</properties>
</profile>
<profile>
<id>test-9.1.2.0</id>
<build>
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
<configuration>
<projectsDirectory>integration</projectsDirectory>
<pomIncludes>
<pomInclude>*/pom.xml</pomInclude>
</pomIncludes>
<streamLogs>true</streamLogs>
<properties>
<jruby.versions>${jruby.versions}</jruby.versions>
<jruby.modes>${jruby.modes}</jruby.modes>
<jruby.openssl.version>${project.version}</jruby.openssl.version>
<bc.versions>${bc.versions}</bc.versions>
<runit.dir>${runit.dir}</runit.dir>
</properties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
<jruby.version>9.1.2.0</jruby.version>
<jruby.versions>9.1.2.0</jruby.versions>
</properties>
</profile>
<profile>
<id>release</id>
<build>

0 comments on commit 144412f

Please sign in to comment.