Commit 9c119571 authored by Luca Falavigna's avatar Luca Falavigna

Add support for riscv64 architecture

parent 99822d34
......@@ -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
......
###
debomatic-webui riscv64 configuration
###
architecture = "riscv64"
port = 8005
# DO NOT EDIT THIS LINE:
config = require(process.env.DWCONFIG + '/mergerconfig.coffee')(architecture, port)
......@@ -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';
......
......@@ -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',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment