Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 7ddd08a

Browse files
authored
Merge pull request #422 from BitCannaGlobal/v4-reloaded
remove custom modules & add Wasm
2 parents 71b9efb + 6a7db55 commit 7ddd08a

File tree

97 files changed

+1184
-145904
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1184
-145904
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/Json-validate.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/golangci-lint.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
config.yml
1+
vue/node_modules
2+
vue/dist
3+
release/
4+
.idea/
5+
.vscode/
26
.DS_Store
3-
ts-client/*
7+
*.dot
8+
*.log
9+
*.ign

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,12 @@ ldflags := $(strip $(ldflags))
7171
BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'
7272

7373
check_version:
74-
ifneq ($(GO_MINOR_VERSION),22)
75-
@echo "ERROR: Go version 1.22 is required for building BCNAD."
74+
ifeq ($(shell expr $(GO_MINOR_VERSION) \< 23), 1)
75+
@echo "ERROR: Go version 1.23 or newer is required for building BCNAD."
7676
exit 1
7777
endif
7878

79+
7980
build: check_version go.sum
8081
@echo "--> Building..."
8182
go build -mod=readonly $(BUILD_FLAGS) -o $(BUILD_DIR)/ ./...

0 commit comments

Comments
 (0)