Skip to content

Commit ec79d26

Browse files
committed
Merge branch 'master' into kevin/fix-lint2
2 parents 1741cf0 + 2cc7a4a commit ec79d26

File tree

184 files changed

+8605
-10011
lines changed

Some content is hidden

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

184 files changed

+8605
-10011
lines changed

.github/workflows/go.yml

-35
Original file line numberDiff line numberDiff line change
@@ -37,38 +37,3 @@ jobs:
3737
with:
3838
file: ./coverage.txt
3939
verbose: true
40-
41-
feature-toggle-margin-cli-alpha:
42-
runs-on: ubuntu-latest
43-
steps:
44-
- name: Set up Go 1.x
45-
uses: actions/setup-go@v2
46-
with:
47-
go-version: ^1.15
48-
id: go
49-
50-
- name: Check out code into the Go module directory
51-
uses: actions/checkout@v2
52-
53-
- name: Get dependencies
54-
run: |
55-
go get -v -t -d ./...
56-
57-
- name: Build
58-
run: FEATURE_TOGGLE_MARGIN_CLI_ALPHA=1 make install
59-
60-
- name: Test
61-
run: |
62-
go test -tags "FEATURE_TOGGLE_MARGIN_CLI_ALPHA" -v ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg $(go list ./... | grep -v test | tr "\n" ",")
63-
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER')"
64-
for filename in ${excludelist}; do
65-
filename=$(echo $filename | sed 's/^../github.com\/Sifchain\/sifnode/g')
66-
echo "Excluding ${filename} from coverage report..."
67-
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
68-
done
69-
70-
- name: Upload coverage report
71-
uses: codecov/codecov-action@v3
72-
with:
73-
file: ./coverage.txt
74-
verbose: true

.github/workflows/integrationtest1.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "ui/**"
66

77
jobs:
8-
test:
8+
integration:
99
timeout-minutes: 40
1010
runs-on: ubuntu-20.04
1111
steps:

.github/workflows/integrationtest2.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "ui/**"
66

77
jobs:
8-
test:
8+
integration:
99
timeout-minutes: 40
1010
runs-on: ubuntu-20.04
1111
steps:

.github/workflows/integrationtest3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "ui/**"
66

77
jobs:
8-
test:
8+
integration:
99
timeout-minutes: 40
1010
runs-on: ubuntu-20.04
1111
steps:

.github/workflows/localnet.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: [push]
44

55
jobs:
66
build:
7+
if: ${{ false }}
78
name: Build Stack
89
defaults:
910
run:

Makefile

-7
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bu
1212

1313
GOFLAGS:=""
1414
GOTAGS:=
15-
ifeq ($(FEATURE_TOGGLE_SDK_045), 1)
16-
GOFLAGS:="-modfile=go_FEATURE_TOGGLE_SDK_045.mod"
17-
GOTAGS:=$(GOTAGS)FEATURE_TOGGLE_SDK_045,
18-
endif
19-
ifeq ($(FEATURE_TOGGLE_MARGIN_CLI_ALPHA), 1)
20-
GOTAGS:=$(GOTAGS)FEATURE_TOGGLE_MARGIN_CLI_ALPHA,
21-
endif
2215

2316
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=sifchain \
2417
-X github.com/cosmos/cosmos-sdk/version.ServerName=sifnoded \

0 commit comments

Comments
 (0)