Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Switch tests and admin to use chime/stable
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Donnell <[email protected]>
  • Loading branch information
scealiontach committed Jun 22, 2021
1 parent 06053e1 commit dc2e3c6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions adhoc/admin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ FROM ubuntu:bionic
RUN apt-get update \
&& apt-get install gnupg -y

RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/nightly bionic universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 44FC67F19B2466EA \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 44FC67F19B2466EA) \
RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/chime/stable bionic universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8AA7AF1F1091A5FD \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 8AA7AF1F1091A5FD) \
&& apt-get update \
&& apt-get install -y -q --allow-downgrades \
curl \
Expand Down
10 changes: 5 additions & 5 deletions tests/sawtooth-raft-test.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ FROM ubuntu:bionic
RUN apt-get update \
&& apt-get install gnupg -y

RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/nightly bionic universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 44FC67F19B2466EA \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 44FC67F19B2466EA) \
RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/chime/stable bionic universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8AA7AF1F1091A5FD \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 8AA7AF1F1091A5FD) \
&& apt-get update \
&& apt-get install -y -q --allow-downgrades \
apt-transport-https \
Expand All @@ -33,12 +33,12 @@ RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/nightly bionic univers
python3 \
python3-sawtooth-cli \
python3-sawtooth-rest-api \
python3-sawtooth-settings \
python3-sawtooth-validator \
python3-requests \
python3-nose2 \
sawtooth-settings-tp \
sawtooth-smallbank-workload \
sawtooth-smallbank-tp-rust \
sawtooth-smallbank-tp-go \
software-properties-common \
unzip \
# Install docker
Expand Down
6 changes: 3 additions & 3 deletions tests/test_liveness.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ services:
dockerfile: sawtooth-raft-test.dockerfile
expose:
- 4004
command: smallbank-tp-rust -C tcp://validator-1:4004
command: smallbank-tp-go -C tcp://validator-1:4004 --max-queue-size 1024 --worker-thread-count 32
stop_signal: SIGKILL

smallbank-tp-2:
Expand All @@ -223,7 +223,7 @@ services:
dockerfile: sawtooth-raft-test.dockerfile
expose:
- 4004
command: smallbank-tp-rust -C tcp://validator-2:4004
command: smallbank-tp-go -C tcp://validator-2:4004 --max-queue-size 1024 --worker-thread-count 32
stop_signal: SIGKILL

smallbank-tp-3:
Expand All @@ -233,7 +233,7 @@ services:
dockerfile: sawtooth-raft-test.dockerfile
expose:
- 4004
command: smallbank-tp-rust -C tcp://validator-3:4004
command: smallbank-tp-go -C tcp://validator-3:4004 --max-queue-size 1024 --worker-thread-count 32
stop_signal: SIGKILL

settings-tp-1:
Expand Down

0 comments on commit dc2e3c6

Please sign in to comment.