Skip to content

Commit 144412f

Browse files
committed
[build] add (and test) a profile for JRuby 9.1.2.0
1 parent dcf482c commit 144412f

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ env:
1616
- TEST_PROFILE=test-9.0.1.0
1717
- TEST_PROFILE=test-9.0.5.0
1818
- TEST_PROFILE=test-9.1.1.0
19+
- TEST_PROFILE=test-9.1.2.0
1920

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

@@ -70,6 +71,9 @@ matrix:
7071
- jdk: oraclejdk7
7172
env: TEST_COMMAND="jruby -S rake integration:install integration:test"
7273
rvm: jruby-9.1.1.0
74+
- jdk: oraclejdk8
75+
env: TEST_COMMAND="jruby -S rake integration:install integration:test"
76+
rvm: jruby-9.1.2.0
7377
notifications:
7478
irc:
7579
channels:

Mavenfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ end
171171

172172
}
173173

174-
jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.0.0 9.1.1.0 }
174+
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 }
175175

176176
jruby_9_K_versions.each { |version|
177177
profile :id => "test-#{version}" do

pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,44 @@ DO NOT MODIFIY - GENERATED CODE
949949
<jruby.versions>9.1.1.0</jruby.versions>
950950
</properties>
951951
</profile>
952+
<profile>
953+
<id>test-9.1.2.0</id>
954+
<build>
955+
<plugins>
956+
<plugin>
957+
<artifactId>maven-invoker-plugin</artifactId>
958+
<version>1.8</version>
959+
<executions>
960+
<execution>
961+
<goals>
962+
<goal>install</goal>
963+
<goal>run</goal>
964+
</goals>
965+
<configuration>
966+
<projectsDirectory>integration</projectsDirectory>
967+
<pomIncludes>
968+
<pomInclude>*/pom.xml</pomInclude>
969+
</pomIncludes>
970+
<streamLogs>true</streamLogs>
971+
<properties>
972+
<jruby.versions>${jruby.versions}</jruby.versions>
973+
<jruby.modes>${jruby.modes}</jruby.modes>
974+
<jruby.openssl.version>${project.version}</jruby.openssl.version>
975+
<bc.versions>${bc.versions}</bc.versions>
976+
<runit.dir>${runit.dir}</runit.dir>
977+
</properties>
978+
</configuration>
979+
</execution>
980+
</executions>
981+
</plugin>
982+
</plugins>
983+
</build>
984+
<properties>
985+
<bc.versions>1.51,1.52,1.53,1.54</bc.versions>
986+
<jruby.version>9.1.2.0</jruby.version>
987+
<jruby.versions>9.1.2.0</jruby.versions>
988+
</properties>
989+
</profile>
952990
<profile>
953991
<id>release</id>
954992
<build>

0 commit comments

Comments
 (0)