Same here. All jobs that use the plugin (more than 50) were failing because of the "rvm" check was disabled:
I saw that in config.xml this class changed (Jenkins::Plugin::Proxies::BuildWrapper by Jenkins::Tasks::BuildWrapperProxy):
(before)
<buildWrappers>
<ruby-proxy-object>
<ruby-object ruby-class="Jenkins::Plugin::Proxies::BuildWrapper" pluginid="rvm">
<object ruby-class="RvmWrapper" pluginid="rvm">
<impl pluginid="rvm" ruby-class="String">2.2.1@puppet</impl>
</object>
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
</ruby-object>
</ruby-proxy-object>
</buildWrappers>
(now)
<buildWrappers>
<ruby-proxy-object>
<ruby-object ruby-class="Jenkins::Tasks::BuildWrapperProxy" pluginid="rvm">
<object ruby-class="RvmWrapper" pluginid="rvm">
<impl pluginid="rvm" ruby-class="String">2.2.1@puppet</impl>
</object>
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
</ruby-object>
</ruby-proxy-object>
</buildWrappers>
But even modifying it manually and reloading config from disk didn't work.
Same here. All jobs that use the plugin (more than 50) were failing because of the "rvm" check was disabled:
I saw that in config.xml this class changed (Jenkins::Plugin::Proxies::BuildWrapper by Jenkins::Tasks::BuildWrapperProxy):
(before)
(now)
But even modifying it manually and reloading config from disk didn't work.