Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: upgrade to new tfhe-rs version that support new PK scheme for … #152

Merged
merged 3 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading