mirror of
https://github.com/status-im/status-node.git
synced 2026-08-27 09:21:13 +00:00
adding whisper nodes and fix build file
This commit is contained in:
+1
-1
@@ -13,5 +13,5 @@ docker run -it --rm \
|
||||
-u jenkins:$(getent group $(whoami) | cut -d: -f3) \
|
||||
-v "${PWD}:/status-node" \
|
||||
-w /status-node \
|
||||
statusteam/status-node-build:0.1.0 \
|
||||
statusteam/nim-status-client-build:1.0.2 \
|
||||
./docker-linux-app-image.sh
|
||||
|
||||
+6
-3
@@ -17,7 +17,10 @@ RUN export DEBIAN_FRONTEND=noninteractive \
|
||||
&& sudo apt purge -yq gnupg \
|
||||
&& sudo apt install -yq --fix-missing \
|
||||
build-essential cmake jq git s3cmd gnupg2 \
|
||||
libpcre3-dev libnss3 libxcomposite1 libxtst6
|
||||
libpcre3-dev libnss3 libxcomposite1 libxtst6 \
|
||||
gstreamer1.0-plugins-good gstreamer1.0-plugins-bad \
|
||||
gstreamer1.0-plugins-ugly gstreamer1.0-libav \
|
||||
gstreamer1.0-tools gstreamer1.0-alsa gstreamer1.0-pulseaudio
|
||||
|
||||
# Installing Golang
|
||||
RUN GOLANG_SHA256="aed845e4185a0b2a3c3d5e1d0a35491702c55889192bb9c30e67a3de6849c067" \
|
||||
@@ -42,5 +45,5 @@ USER jenkins
|
||||
ENV HOME="/home/jenkins"
|
||||
|
||||
LABEL maintainer="jakub@status.im"
|
||||
LABEL source="https://github.com/status-im/status-node"
|
||||
LABEL description="Build image for Status Desktop Node"
|
||||
LABEL source="https://github.com/status-im/status-desktop"
|
||||
LABEL description="Build image for the Status Desktop client written in Nim."
|
||||
|
||||
@@ -126,6 +126,7 @@ Column {
|
||||
wakuV2Nodes = Object.keys(fleetConfig["waku"]).map(function(k){return fleetConfig["waku"][k]});
|
||||
} else {
|
||||
boot = Object.keys(fleetConfig["boot"]).map(function(k){return fleetConfig["boot"][k]});
|
||||
boot = boot.concat(Object.keys(fleetConfig["whisper"]).map(function(k){return fleetConfig["whisper"][k]}));
|
||||
mailservers = Object.keys(fleetConfig["mail"]).map(function(k){return fleetConfig["mail"][k]});
|
||||
}
|
||||
|
||||
@@ -163,7 +164,7 @@ Column {
|
||||
"Min": 2
|
||||
}
|
||||
},
|
||||
"NoDiscovery": useWakuV2 ? true : false,
|
||||
"NoDiscovery": false,//useWakuV2 ? true : false,
|
||||
"Rendezvous": false,
|
||||
"ClusterConfig": {
|
||||
"Enabled": true,
|
||||
@@ -177,6 +178,8 @@ Column {
|
||||
"WakuStoreNodes": wakuV2Nodes
|
||||
}
|
||||
}
|
||||
|
||||
console.log(JSON.stringify(configJSON))
|
||||
nodeModel.startNode(JSON.stringify(configJSON))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user