Skip to content

Commit

Permalink
chore: remove experimental and data v1alpha1 (#1348)
Browse files Browse the repository at this point in the history
* chore: remove experimental and data v1alpha1

* remove mock wasmd from dockerfile
  • Loading branch information
ryanchristo authored Aug 12, 2022
1 parent d68aa03 commit 9aef28b
Show file tree
Hide file tree
Showing 35 changed files with 1 addition and 15,825 deletions.
9 changes: 0 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ endif
SDK_VERSION := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's:.* ::')
TM_VERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::')

EXPERIMENTAL ?= false
LEDGER_ENABLED ?= true
DB_BACKEND ?= goleveldb

Expand All @@ -30,10 +29,6 @@ DB_BACKEND ?= goleveldb

build_tags = netgo

ifeq ($(EXPERIMENTAL),true)
build_tags += experimental
endif

ifeq ($(LEDGER_ENABLED),true)
ifeq ($(OS),Windows_NT)
GCCEXE = $(shell where gcc.exe 2> NUL)
Expand Down Expand Up @@ -138,15 +133,11 @@ endif
all: build

install: go.sum go-version
@if $(EXPERIMENTAL); then ./scripts/experimental.sh; fi
go install -mod=readonly $(BUILD_FLAGS) $(REGEN_DIR)
@if $(EXPERIMENTAL); then ./scripts/experimental_post.sh; fi

build: go.sum go-version
@mkdir -p $(BUILD_DIR)
@if $(EXPERIMENTAL); then ./scripts/experimental.sh; fi
go build -mod=readonly -o $(BUILD_DIR) $(BUILD_FLAGS) $(REGEN_DIR)
@if $(EXPERIMENTAL); then ./scripts/experimental_post.sh; fi

build-linux:
GOOS=linux GOARCH=amd64 LEDGER_ENABLED=false $(MAKE) build
Expand Down
Loading

0 comments on commit 9aef28b

Please sign in to comment.