-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathheader.debian.html
More file actions
51 lines (38 loc) · 1.36 KB
/
header.debian.html
File metadata and controls
51 lines (38 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base.html" %}
{% block distribution_instruction %}
<p>
This is the Debian package repository of {{product_name}} to automate installation and upgrade.
To use this repository, first add the key to your system (for the Weekly Release Line):
<pre class="text-white bg-dark">
<code>
sudo wget -O /etc/apt/keyrings/jenkins-keyring.asc \
<a href="{{web_url}}/{{organization}}-2023.key" style="color:white">{{web_url}}/{{organization}}-2023.key</a></code>
</pre>
Then add a Jenkins apt repository entry:
<pre class="text-white bg-dark">
<code>
echo "deb [signed-by=/etc/apt/keyrings/jenkins-keyring.asc]" \
{{ web_url }} binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null</code>
</pre>
</p>
<p>
Update your local package index, then finally install {{product_name}}:
<pre class="text-white bg-dark">
<code>
sudo apt-get update
sudo apt-get install fontconfig openjdk-21-jre
sudo apt-get install {{artifactName}}</code>
</pre>
(Install <code>openjdk-17-jre</code> on Debian 12 or earlier)
</p>
<p>
The apt 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 %}
<p>
If you need *.deb for a specific version, use these.
</p>
{% endblock %}