Skip to content

Commit

Permalink
Ci/fix keys for staging env deployment + bump evmos-node image version (
Browse files Browse the repository at this point in the history
#159)

* ci(deploy): fix path to keys in s3 bucket (add version in folder name)

* ci: use v0.1.15 for evmos node image
  • Loading branch information
leventdem committed Jun 30, 2023
1 parent c93b2e3 commit 1ea300b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_validator_aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Sleep for 3 seconds to ensure validtor is running
run: |
sleep 5s
sleep 10s
- name: List files in zbc-solidity
working-directory: evmos/work_dir/zbc-solidity
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ZBC_ORACLE_DB_VERSION ?= main

ZBC_SOLIDITY_PATH ?= $(WORKDIR)/zbc-solidity
ZBC_SOLIDITY_PATH_EXISTS := $(shell test -d $(ZBC_SOLIDITY_PATH)/.git && echo "true" || echo "false")
ZBC_SOLIDITY_VERSION ?= v0.1.2
ZBC_SOLIDITY_VERSION ?= v0.1.3-beta

ETHERMINT_VERSION := $(shell ./scripts/get_module_version.sh go.mod zama.ai/ethermint)
GO_ETHEREUM_VERSION := $(shell ./scripts/get_module_version.sh go.mod zama.ai/go-ethereum)
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose.validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
validator:
image: ghcr.io/zama-ai/evmos-node:v0.1.3
image: ghcr.io/zama-ai/evmos-node:v0.1.5
container_name: evmosnode0
ports:
- "26656-26657:26656-26657"
Expand Down
2 changes: 1 addition & 1 deletion scripts/prepare_volumes_validator_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NETWORK_KEYS_PUBLIC_PATH=./volumes/network-public-fhe-keys
NETWORK_KEYS_PRIVATE_PATH=./volumes/network-private-fhe-keys
S3_BUCKET_PATH="s3://zbc-testnet"
S3_NETWORK_KEYS_PATH="$S3_BUCKET_PATH/network-fhe-keys"
S3_NETWORK_KEYS_FULL_PATH="$S3_NETWORK_KEYS_PATH/staging-env"
S3_NETWORK_KEYS_FULL_PATH="$S3_NETWORK_KEYS_PATH/keys_gen_with_zbc_fhe_tool_v0_1_1"

mkdir -p $NETWORK_KEYS_PUBLIC_PATH
mkdir -p $NETWORK_KEYS_PRIVATE_PATH
Expand Down

0 comments on commit 1ea300b

Please sign in to comment.