mirror of https://github.com/status-im/js-waku.git
chore: update org (#1632)
* update org * update other images as well * small fix
This commit is contained in:
parent
856d3de265
commit
29d83786b2
|
@ -39,7 +39,6 @@
|
||||||
"exponentiate",
|
"exponentiate",
|
||||||
"extip",
|
"extip",
|
||||||
"fanout",
|
"fanout",
|
||||||
"sharded",
|
|
||||||
"floodsub",
|
"floodsub",
|
||||||
"fontsource",
|
"fontsource",
|
||||||
"globby",
|
"globby",
|
||||||
|
@ -93,6 +92,7 @@
|
||||||
"secio",
|
"secio",
|
||||||
"seckey",
|
"seckey",
|
||||||
"secp",
|
"secp",
|
||||||
|
"sharded",
|
||||||
"sscanf",
|
"sscanf",
|
||||||
"staticnode",
|
"staticnode",
|
||||||
"statusim",
|
"statusim",
|
||||||
|
@ -114,6 +114,7 @@
|
||||||
"waku",
|
"waku",
|
||||||
"wakuconnect",
|
"wakuconnect",
|
||||||
"wakunode",
|
"wakunode",
|
||||||
|
"wakuorg",
|
||||||
"wakuv",
|
"wakuv",
|
||||||
"webfonts",
|
"webfonts",
|
||||||
"websockets",
|
"websockets",
|
||||||
|
|
|
@ -10,7 +10,7 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
nim_wakunode_image:
|
nim_wakunode_image:
|
||||||
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.20.0"
|
description: "Docker hub image name taken from https://hub.docker.com/r/wakuorg/nwaku/tags. Format: wakuorg/nwaku:v0.20.0"
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
@ -71,26 +71,26 @@ jobs:
|
||||||
node:
|
node:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.20.0' }}
|
||||||
test_type: node
|
test_type: node
|
||||||
|
|
||||||
node_optional:
|
node_optional:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.20.0' }}
|
||||||
test_type: node-optional
|
test_type: node-optional
|
||||||
|
|
||||||
node_with_go_waku_master:
|
node_with_go_waku_master:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: statusteam/go-waku:latest
|
nim_wakunode_image: wakuorg/go-waku:latest
|
||||||
test_type: go-waku-master
|
test_type: go-waku-master
|
||||||
debug: waku*
|
debug: waku*
|
||||||
|
|
||||||
node_with_nwaku_master:
|
node_with_nwaku_master:
|
||||||
uses: ./.github/workflows/test-node.yml
|
uses: ./.github/workflows/test-node.yml
|
||||||
with:
|
with:
|
||||||
nim_wakunode_image: statusteam/nim-waku:deploy-wakuv2-test
|
nim_wakunode_image: wakuorg/nwaku:deploy-wakuv2-test
|
||||||
test_type: nwaku-master
|
test_type: nwaku-master
|
||||||
debug: waku*
|
debug: waku*
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,7 @@ const WAKU_SERVICE_NODE_PARAMS =
|
||||||
process.env.WAKU_SERVICE_NODE_PARAMS ?? undefined;
|
process.env.WAKU_SERVICE_NODE_PARAMS ?? undefined;
|
||||||
const NODE_READY_LOG_LINE = "Node setup complete";
|
const NODE_READY_LOG_LINE = "Node setup complete";
|
||||||
|
|
||||||
const DOCKER_IMAGE_NAME =
|
const DOCKER_IMAGE_NAME = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.20.0";
|
||||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
|
||||||
|
|
||||||
const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");
|
const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,7 @@ import { promisify } from "util";
|
||||||
|
|
||||||
const execAsync = promisify(exec);
|
const execAsync = promisify(exec);
|
||||||
|
|
||||||
const WAKUNODE_IMAGE =
|
const WAKUNODE_IMAGE = process.env.WAKUNODE_IMAGE || "wakuorg/nwaku:v0.20.0";
|
||||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue