diff --git a/ci_scripts/deploy.sh b/ci_scripts/deploy.sh index 7615df03..da23c4ac 100644 --- a/ci_scripts/deploy.sh +++ b/ci_scripts/deploy.sh @@ -52,10 +52,14 @@ if [ -d ".git" ]; then git reset --hard origin/main else echo "Cloning repository..." - git clone https://github.com/vacp2p/nescience-testnet.git . + git clone https://github.com/logos-blockchain/lssa.git . git checkout main fi +# Install Nomos circuits for compatibility +chmod 777 /ci_scripts/setup-nomos-circuits.sh +/ci_scripts/setup-nomos-circuits.sh + # Build sequencer_runner and wallet in release mode echo "Building sequencer_runner" # That could be just `cargo build --release --bin sequencer_runner --bin wallet` diff --git a/sequencer_runner/Dockerfile b/sequencer_runner/Dockerfile index 3b2153c3..b8b79b59 100644 --- a/sequencer_runner/Dockerfile +++ b/sequencer_runner/Dockerfile @@ -9,6 +9,10 @@ RUN apt-get update && apt-get install -y \ clang \ && rm -rf /var/lib/apt/lists/* +# Nomos circuits for compatibility +RUN chmod 777 /ci_scripts/setup-nomos-circuits.sh + && /ci_scripts/setup-nomos-circuits.sh + WORKDIR /sequencer_runner # Planner stage - generates dependency recipe