<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:37:16 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>OpenDaylight JIRA</title>
    <link>https://jira.opendaylight.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.20.10</version>
        <build-number>820010</build-number>
        <build-date>22-06-2022</build-date>
    </build-info>


<item>
            <title>[RELENG-12] Allow JDK8 to be enabled on select branches in auto-jjb scripts</title>
                <link>https://jira.opendaylight.org/browse/RELENG-12</link>
                <project id="10164" key="RELENG">releng</project>
                    <description>&lt;p&gt;We need a way to enable JDK8 on projects that have branches that can&apos;t do JDK8. Otherwise we end up with projects disabling the auto job management for any branch that they want to do JDK8 on.&lt;/p&gt;

&lt;p&gt;For instance: &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/19329/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/19329/&lt;/a&gt;&lt;/p&gt;</description>
                <environment>&lt;p&gt;Operating System: All&lt;br/&gt;
Platform: All&lt;/p&gt;</environment>
        <key id="19420">RELENG-12</key>
            <summary>Allow JDK8 to be enabled on select branches in auto-jjb scripts</summary>
                <type id="10104" iconUrl="https://jira.opendaylight.org/secure/viewavatar?size=xsmall&amp;avatarId=10303&amp;avatarType=issuetype">Bug</type>
                                                <status id="5" iconUrl="https://jira.opendaylight.org/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="agrimberg">Andrew Grimberg</reporter>
                        <labels>
                    </labels>
                <created>Tue, 5 May 2015 13:56:06 +0000</created>
                <updated>Thu, 19 Oct 2017 21:29:02 +0000</updated>
                            <resolved>Thu, 7 May 2015 19:44:27 +0000</resolved>
                                    <version>unspecified</version>
                                                    <component>Jenkins Job Builder</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="35200" author="zxiiro" created="Tue, 5 May 2015 16:43:32 +0000"  >&lt;p&gt;Created an initial blank commit to describe my plan to add support for this feature. &lt;a href=&quot;https://git.opendaylight.org/gerrit/19644&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/19644&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Heavy modifications will be needed in jjb-init-project and jjb-autoupdate-project script to support this more complex configuration format.&lt;/p&gt;

&lt;p&gt;We&apos;ll need to refactor the parsing of the CFG file into jjb-init-project so that it is capable of reading the new configuration for BRANCHES. Due to this configuration being more complex we&apos;ll also lose support for setting the &quot;-b&quot; branches argument in init-project, or keep it simple but document that it is not possible to set the JDK this way.&lt;/p&gt;</comment>
                            <comment id="35201" author="agrimberg" created="Tue, 5 May 2015 16:58:37 +0000"  >&lt;p&gt;Maybe the configuration file should be switched from a basic key value setup to a yaml?&lt;/p&gt;

&lt;p&gt;That way we won&apos;t have to deal with reformatting different parts of it later, just handling the keys in different ways.&lt;/p&gt;</comment>
                            <comment id="35202" author="zxiiro" created="Tue, 5 May 2015 17:00:37 +0000"  >&lt;p&gt;(In reply to Andrew Grimberg from comment #2)&lt;br/&gt;
&amp;gt; Maybe the configuration file should be switched from a basic key value setup&lt;br/&gt;
&amp;gt; to a yaml?&lt;br/&gt;
&amp;gt; &lt;br/&gt;
&amp;gt; That way we won&apos;t have to deal with reformatting different parts of it&lt;br/&gt;
&amp;gt; later, just handling the keys in different ways.&lt;/p&gt;

&lt;p&gt;It&apos;s actually already YAML format. We just happened to use it as a basic key-value store but the code that reads this file is actually a call to &quot;yaml.load(stream)&quot;.&lt;/p&gt;</comment>
                            <comment id="35203" author="agrimberg" created="Tue, 5 May 2015 17:06:14 +0000"  >&lt;p&gt;(In reply to Thanh Ha from comment #3)&lt;br/&gt;
&amp;gt; (In reply to Andrew Grimberg from comment #2)&lt;br/&gt;
&amp;gt; &amp;gt; Maybe the configuration file should be switched from a basic key value setup&lt;br/&gt;
&amp;gt; &amp;gt; to a yaml?&lt;br/&gt;
&amp;gt; &amp;gt; &lt;br/&gt;
&amp;gt; &amp;gt; That way we won&apos;t have to deal with reformatting different parts of it&lt;br/&gt;
&amp;gt; &amp;gt; later, just handling the keys in different ways.&lt;br/&gt;
&amp;gt; &lt;br/&gt;
&amp;gt; It&apos;s actually already YAML format. We just happened to use it as a basic&lt;br/&gt;
&amp;gt; key-value store but the code that reads this file is actually a call to&lt;br/&gt;
&amp;gt; &quot;yaml.load(stream)&quot;.&lt;/p&gt;

&lt;p&gt;Ah silly me. That&apos;s what I get for not actually looking at how we load that file &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.opendaylight.org/images/icons/emoticons/wink.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt; Though I think I remember talking about it when you set the extension to .cfg instead of .yaml since a .yaml would have caused jjb to pick up the file during processing.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_11400" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10208" key="com.atlassian.jira.plugin.system.customfieldtypes:textfield">
                        <customfieldname>External issue ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3122</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10201" key="com.atlassian.jira.plugin.system.customfieldtypes:url">
                        <customfieldname>External issue URL</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[https://bugs.opendaylight.org/show_bug.cgi?id=3122]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10206" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Issue Type</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10308"><![CDATA[New Feature]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10000" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i01m07:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>