Skip to content

Commit

Permalink
build: upgrade to new tfhe-rs version that support new PK scheme for … (
Browse files Browse the repository at this point in the history
#152)

* build: upgrade to new tfhe-rs version that support new PK scheme for WASM

* build: set tag to zbc-solidity

* ci(publish_evmos_node): fix tag issues
  • Loading branch information
leventdem authored Jun 23, 2023
1 parent 4d45c9e commit 42c6e66
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish_docker_evmos_node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ 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")
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 ?= 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)
Expand Down

0 comments on commit 42c6e66

Please sign in to comment.