Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
9c119571
Commit
9c119571
authored
Mar 30, 2024
by
Luca Falavigna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for riscv64 architecture
parent
99822d34
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
README.md
README.md
+1
-0
config/riscv64.config
config/riscv64.config
+9
-0
debomatic-webui/views/header.ejs
debomatic-webui/views/header.ejs
+1
-1
proxy/proxy.js
proxy/proxy.js
+7
-0
No files found.
README.md
View file @
9c119571
...
...
@@ -13,6 +13,7 @@ Some **debomatic-webui** instances are already running over:
*
http://debomatic-armhf.debian.net
*
http://debomatic-mips64el.debian.net
*
http://debomatic-ppc64el.debian.net
*
http://debomatic-riscv64.debian.net
*
http://debomatic-s390x.debian.net
## Requirements
...
...
config/riscv64.config
0 → 100644
View file @
9c119571
###
debomatic
-
webui
riscv64
configuration
###
architecture
=
"riscv64"
port
=
8005
# DO NOT EDIT THIS LINE:
config
=
require
(
process
.
env
.
DWCONFIG
+
'/mergerconfig.coffee'
)(
architecture
,
port
)
debomatic-webui/views/header.ejs
View file @
9c119571
...
...
@@ -24,7 +24,7 @@
<a
style=
"color: #eee; font-size: 15px; padding: 15px 10px;"
href=
"#"
class=
"dropdown-toggle"
data-toggle=
"dropdown"
><
%=
web
.
debomatic
.
architecture
%
>
<span
class=
"caret"
></span></a>
<ul
class=
"dropdown-menu"
role=
"menu"
>
<script>
var
all_services
=
[
'
amd64
'
,
'
i386
'
,
'
arm64
'
,
'
armel
'
,
'
armhf
'
,
'
mips64el
'
,
'
ppc64el
'
,
'
s390x
'
,
'
staging
'
];
var
all_services
=
[
'
amd64
'
,
'
i386
'
,
'
arm64
'
,
'
armel
'
,
'
armhf
'
,
'
mips64el
'
,
'
ppc64el
'
,
'
riscv64
'
,
'
s390x
'
,
'
staging
'
];
for
(
var
i
=
0
;
i
<
all_services
.
length
;
i
++
)
{
var
arch
=
all_services
[
i
];
var
host
=
"
debomatic-
"
+
arch
+
'
.debian.net
'
;
...
...
proxy/proxy.js
View file @
9c119571
...
...
@@ -52,6 +52,13 @@ subdomains["debomatic-ppc64el.debian.net"] = new httpProxy.createProxyServer({
}
})
subdomains
[
"
debomatic-riscv64.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
port
:
8005
}
})
subdomains
[
"
debomatic-s390x.debian.net
"
]
=
new
httpProxy
.
createProxyServer
({
target
:
{
host
:
'
localhost
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment