Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Red Hat instructions & Java support information #495

Merged
merged 6 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions templates/header.redhat.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,13 @@
{% block distribution_instruction %}

<p>
To use this repository, run the following command:

<pre class="text-white bg-dark">

sudo wget -O /etc/yum.repos.d/{{artifactName}}.repo {{ web_url }}/{{artifactName}}.repo
sudo rpm --import {{ web_url }}/{{organization}}-2023.key
</pre>
To install Jenkins through Fedora, use the instructions provided in our <a href="https://www.jenkins.io/doc/book/installing/linux/#fedora">Fedora installation guide</a>.
kmartens27 marked this conversation as resolved.
Show resolved Hide resolved

<p>
If you've previously imported the key from Jenkins, the <code>rpm --import</code> will fail because
you already have a key. Please ignore that and move on.

<pre class="text-white bg-dark">

yum install fontconfig java-17-openjdk
yum install {{artifactName}}
</pre>
If you are trying to install Jenkins through Red Hat Enterprise Linux, Alma Linux, Rocky Linux, Oracle Linux, or another Red Hat based distribution, you can utilize the instructions provided in our <a href="https://www.jenkins.io/doc/book/installing/linux/#red-hat-centos">Red Hat Enterprise Linux installation guide.</a>
kmartens27 marked this conversation as resolved.
Show resolved Hide resolved

<p>
The rpm packages were signed using this key:
</p>

<pre class="text-white bg-dark" style="box-sizing:border-box; padding:1.5rem 1rem;">{{ pub_key_info|trim }}</pre>


{% endblock %}

{% block individual_package_instruction %}
Expand Down
56 changes: 1 addition & 55 deletions templates/header.war.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,64 +13,10 @@
e.g. <a href="https://adoptium.net/">Eclipse Temurin</a>.
</p>

<h2>
Weekly Release Line
</h2>

<p>
Supported Java versions for the weekly release line are:
To determine the Java version that is supported for your Jenkins environment, please refer to the <a href="https://www.jenkins.io/doc/book/platform-information/support-policy-java/#running-jenkins-system">Java support policy.</a>
</p>

<dl>
<dt>2.463 (June 2024) and newer</dt>
<dd>Java 17 or Java 21</dd>

<dt>2.419 (August 2023) and newer</dt>
<dd>Java 11, Java 17, or Java 21</dd>

<dt>2.357 (June 2022) and newer</dt>
<dd>Java 11 or Java 17</dd>

<dt>2.164 (February 2019) and newer</dt>
<dd>Java 8 or Java 11</dd>

<dt>2.54 (April 2017) and newer</dt>
<dd>Java 8</dd>

<dt>1.612 (May 2015) and newer</dt>
<dd>Java 7</dd>
kmartens27 marked this conversation as resolved.
Show resolved Hide resolved
</dl>

<h2>
<a href="https://www.jenkins.io/download/lts/">Long Term Support (LTS)</a> Release Line
</h2>

<p>
Supported Java versions for the LTS release line are:
</p>

<dl>
<dt>2.479.1 (October 2024) and newer</dt>
<dd>Java 17 or Java 21</dd>

<dt>2.426.1 (November 2023) and newer</dt>
<dd>Java 11, Java 17 or Java 21</dd>

<dt>2.361.1 (September 2022) and newer</dt>
<dd>Java 11 or Java 17</dd>

<dt>2.346.1 (June 2022) and newer</dt>
<dd>Java 8, Java 11, or Java 17</dd>

<dt>2.164.1 (March 2019) and newer</dt>
<dd>Java 8 or Java 11</dd>

<dt>2.60.1 (June 2017) and newer</dt>
<dd>Java 8</dd>

<dt>1.625.1 (October 2015) and newer</dt>
<dd>Java 7</dd>
</dl>
{% endblock %}

{% block individual_package_instruction %}
Expand Down