From 6a90c01668ec643f4ebda3f74453a1b0011946a9 Mon Sep 17 00:00:00 2001 From: Arseniy Klempner Date: Thu, 28 May 2026 16:44:47 -0600 Subject: [PATCH] build: update Docker image and scripts for v2 branches --- .github/Dockerfile.sim | 6 +++--- scripts/run_in_docker.sh | 4 ++-- simulations/mix_lez_chat/setup_and_run.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/Dockerfile.sim b/.github/Dockerfile.sim index 6e0d548..9e21085 100644 --- a/.github/Dockerfile.sim +++ b/.github/Dockerfile.sim @@ -35,7 +35,7 @@ RUN ARCH=$(uname -m | sed 's/arm64/aarch64/') && \ RUN source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && \ cd /root && \ - git clone -b feat/mix-rln-gifter-sim https://github.com/logos-co/logos-lez-rln.git && \ + git clone -b feat/eip191-gifter-auth https://github.com/logos-co/logos-lez-rln.git && \ cd logos-lez-rln && \ git submodule update --init && \ (cd logos-delivery-module && git submodule update --init --recursive) @@ -99,7 +99,7 @@ RUN cd /root/logos-lez-rln/lez-rln && \ RUN source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && \ cd /root && \ - git clone -b feat/logos-delivery https://github.com/adklempner/logos-chat.git && \ + git clone -b feat/sim-rln-gifter-auth-v2 https://github.com/logos-messaging/logos-chat.git && \ cd logos-chat && \ git submodule update --init --depth 1 && \ (cd vendor/nwaku && git submodule update --init --recursive --depth 1) && \ @@ -110,7 +110,7 @@ RUN source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && \ RUN source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh && \ cd /root && \ - git clone -b feat/logos-delivery https://github.com/adklempner/logos-chat-module.git && \ + git clone -b feat/logos-delivery-v2 https://github.com/adklempner/logos-chat-module.git && \ cd logos-chat-module && nix build 2>&1 | tail -5 # --- Package runtime closure --- diff --git a/scripts/run_in_docker.sh b/scripts/run_in_docker.sh index 66ab84b..5a8f85b 100755 --- a/scripts/run_in_docker.sh +++ b/scripts/run_in_docker.sh @@ -20,8 +20,8 @@ ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" DOCKERFILE="$ROOT/.github/Dockerfile.sim" IMAGE_NAME="${DOCKER_IMAGE:-ghcr.io/adklempner/logos-chat-sim:latest}" CONTAINER_NAME="logos-chat-sim-run" -BRANCH="${BRANCH:-feat/logos-delivery}" -REPO_URL="${REPO_URL:-https://github.com/adklempner/logos-chat.git}" +BRANCH="${BRANCH:-feat/sim-rln-gifter-auth-v2}" +REPO_URL="${REPO_URL:-https://github.com/logos-messaging/logos-chat.git}" # Build image if it doesn't exist or REBUILD_IMAGE=1 if [ "${REBUILD_IMAGE:-0}" = "1" ]; then diff --git a/simulations/mix_lez_chat/setup_and_run.sh b/simulations/mix_lez_chat/setup_and_run.sh index ede0b4d..dd275d0 100755 --- a/simulations/mix_lez_chat/setup_and_run.sh +++ b/simulations/mix_lez_chat/setup_and_run.sh @@ -13,7 +13,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" CHAT_MODULE_DIR="${CHAT_MODULE_DIR:-$ROOT/../logos-chat-module}" CHAT_MODULE_REPO="${CHAT_MODULE_REPO:-git@github.com:adklempner/logos-chat-module.git}" -CHAT_MODULE_BRANCH="${CHAT_MODULE_BRANCH:-feat/logos-delivery}" +CHAT_MODULE_BRANCH="${CHAT_MODULE_BRANCH:-feat/logos-delivery-v2}" log() { echo "[$(date '+%H:%M:%S')] $*"; }