From 75c9901b78c87c0a3e58c83c79537205cbc2ecce Mon Sep 17 00:00:00 2001 From: Levent Demir Date: Fri, 23 Jun 2023 14:07:19 +0200 Subject: [PATCH 1/3] build: upgrade to new tfhe-rs version that support new PK scheme for WASM --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7dfeb026..c6236a21 100755 --- a/Makefile +++ b/Makefile @@ -35,12 +35,12 @@ GOPRIVATE = github.com/zama-ai/* TFHE_RS_PATH ?= $(WORKDIR)/tfhe-rs TFHE_RS_EXISTS := $(shell test -d $(TFHE_RS_PATH)/.git && echo "true" || echo "false") -TFHE_RS_VERSION ?= 1d817c45d5234bcf33638406191b656998b30c2a +TFHE_RS_VERSION ?= 0.3.0-beta.0 ZBC_FHE_TOOL_PATH ?= $(WORKDIR)/zbc-fhe-tool ZBC_FHE_TOOL_PATH_EXISTS := $(shell test -d $(ZBC_FHE_TOOL_PATH)/.git && echo "true" || echo "false") -ZBC_FHE_TOOL_VERSION ?= v0.1.0 +ZBC_FHE_TOOL_VERSION ?= v0.1.1 ZBC_ORACLE_DB_PATH ?= $(WORKDIR)/zbc-oracle-db ZBC_ORACLE_DB_PATH_EXISTS := $(shell test -d $(ZBC_ORACLE_DB_PATH)/.git && echo "true" || echo "false") @@ -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.0 +ZBC_SOLIDITY_VERSION ?= ci/bump-zbc-fhe-tool 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) From 6531a8f434b7f53ef1ed2939f8d4055d60e1c5c4 Mon Sep 17 00:00:00 2001 From: Levent Demir Date: Fri, 23 Jun 2023 14:27:47 +0200 Subject: [PATCH 2/3] build: set tag to zbc-solidity --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6236a21..8f20bb01 100755 --- a/Makefile +++ b/Makefile @@ -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 ?= ci/bump-zbc-fhe-tool +ZBC_SOLIDITY_VERSION ?= v0.1.1 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) From 2743ab1b13598f084f9ede8c7cd0fcd11a04d77d Mon Sep 17 00:00:00 2001 From: Levent Demir Date: Fri, 23 Jun 2023 14:50:32 +0200 Subject: [PATCH 3/3] ci(publish_evmos_node): fix tag issues --- .github/workflows/publish_docker_evmos_node.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/publish_docker_evmos_node.yml b/.github/workflows/publish_docker_evmos_node.yml index d47a4810..b474ed0b 100644 --- a/.github/workflows/publish_docker_evmos_node.yml +++ b/.github/workflows/publish_docker_evmos_node.yml @@ -94,4 +94,15 @@ jobs: make build-docker docker tag evmosnodelocal:latest ${{ env.DOCKER_IMAGE }}:${{ inputs.evmos_node_tag }} docker tag evmosnodelocal:latest ${{ env.DOCKER_IMAGE }}:latest + + - name: Check docker images + working-directory: ./evmos + run: | + docker images + + - name: Push + working-directory: ./evmos + run: | docker push ${{ env.DOCKER_IMAGE }} --all-tags + +