From f7e16eecfec74483cd064ac60e945c7609240170 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Thu, 13 Apr 2023 21:07:10 +0300 Subject: [PATCH] Install and start tor in buildbot --- .buildbot/ubuntu/Dockerfile | 3 ++- .buildbot/ubuntu/build.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.buildbot/ubuntu/Dockerfile b/.buildbot/ubuntu/Dockerfile index c61c378..89de9e3 100644 --- a/.buildbot/ubuntu/Dockerfile +++ b/.buildbot/ubuntu/Dockerfile @@ -9,7 +9,8 @@ RUN apt-add-repository ppa:purplei2p/i2pd && apt-get update -qq RUN apt-get install -yq --no-install-suggests --no-install-recommends \ python3-dev python3-pip python-is-python3 python3.11-dev python3.11-venv -RUN apt-get install -yq --no-install-suggests --no-install-recommends sudo i2pd +RUN apt-get install -yq --no-install-suggests --no-install-recommends \ + sudo i2pd tor RUN echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers diff --git a/.buildbot/ubuntu/build.sh b/.buildbot/ubuntu/build.sh index bda6c27..81c3274 100755 --- a/.buildbot/ubuntu/build.sh +++ b/.buildbot/ubuntu/build.sh @@ -1,3 +1,4 @@ #!/bin/sh sudo service i2pd start +sudo service tor start