Skip to content

Commit 451ab81

Browse files
authored
Merge pull request #863 from tendermint/release/v0.15.0
chore: release/v0.15.0
2 parents b30ae61 + 53498eb commit 451ab81

File tree

847 files changed

+356016
-14644
lines changed

Some content is hidden

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

847 files changed

+356016
-14644
lines changed

.github/workflows/devices.yml

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

.github/workflows/docker-push.yml

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

.github/workflows/docker.yml

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

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,22 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: 1.15
18+
go-version: 1.16
1919

2020
- name: Set up Node
2121
uses: actions/setup-node@v2-beta
2222
with:
23-
node-version: "14"
24-
25-
- name: Set up packr2
26-
run: go get -u github.com/gobuffalo/packr/v2/packr2
23+
node-version: 14
2724

2825
- name: Set up Snapcraft
2926
run: |
3027
sudo apt-get update && sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft
31-
3228
- name: Checkout
3329
uses: actions/checkout@v2
3430
with:
3531
path: ${{ env.working-directory }}
3632
fetch-depth: 0
3733

38-
- name: Build UI
39-
working-directory: ${{ env.working-directory }}
40-
run: make ui
41-
42-
- name: Run packr2
43-
working-directory: ${{ env.working-directory }}
44-
run: |
45-
export GOPATH=$GITHUB_WORKSPACE/go
46-
export PATH=$PATH:$GOPATH
47-
cd starport/interface/cli/starport
48-
packr2 -v
49-
5034
- name: Snapcraft Login
5135
env:
5236
SNAPCRAFT_LOGIN: ${{ secrets.SNAPCRAFT_LOGIN }}

.github/workflows/lint.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,21 @@ jobs:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 6
1313
steps:
14+
- name: Set up Go
15+
uses: actions/setup-go@v2
16+
with:
17+
go-version: 1.16
1418
- uses: actions/checkout@v2
19+
- uses: technote-space/get-diff-action@v4
20+
with:
21+
PATTERNS: |
22+
**/**.go
23+
go.mod
24+
go.sum
1525
- uses: golangci/golangci-lint-action@master
1626
with:
1727
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
18-
version: v1.28
28+
version: v1.37
1929
args: --timeout 10m
2030
github-token: ${{ secrets.github_token }}
21-
31+
if: env.GIT_DIFF

.github/workflows/makepkg.yml

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

.github/workflows/semantic-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
steps:
1212
- uses: amannn/action-semantic-pull-request@v1.2.0
1313
env:
14-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,16 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.15
19+
go-version: 1.16
2020

2121
- name: Set up Node
2222
uses: actions/setup-node@v2-beta
2323
with:
24-
node-version: "14"
24+
node-version: 14
2525

2626
- name: Install protoc
2727
uses: arduino/setup-protoc@v1
2828

29-
- name: Set up packr2
30-
run: go get -u github.com/gobuffalo/packr/v2/packr2
31-
3229
- name: Checkout
3330
uses: actions/checkout@v2
3431
with:
@@ -39,14 +36,6 @@ jobs:
3936
working-directory: ${{ env.working-directory }}
4037
run: make ui
4138

42-
- name: Run packr2
43-
working-directory: ${{ env.working-directory }}
44-
run: |
45-
export GOPATH=$GITHUB_WORKSPACE/go
46-
export PATH=$PATH:$GOPATH
47-
cd starport/interface/cli/starport
48-
packr2 -v
49-
5039
- name: Install Starport
5140
working-directory: ${{ env.working-directory }}
5241
run: |

.github/workflows/test-integration.yml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.15
20+
go-version: 1.16
21+
22+
- name: "Get Go 1.15"
23+
run: |
24+
go get golang.org/dl/go1.15
25+
go1.15 download
2126
2227
- name: Install protoc
2328
uses: arduino/setup-protoc@v1
2429

25-
- name: Set up packr2
26-
run: go get -u github.com/gobuffalo/packr/v2/packr2
27-
28-
- name: Set up relayer
29-
run: git clone https://github.com/cosmos/relayer && cd relayer && git checkout ba17c4db185229d9354187a8b9723097ab527261 && make install
30-
3130
- name: Checkout
3231
uses: actions/checkout@v2
3332
with:
@@ -38,14 +37,6 @@ jobs:
3837
working-directory: ${{ env.working-directory }}
3938
run: make ui
4039

41-
- name: Run packr2
42-
working-directory: ${{ env.working-directory }}
43-
run: |
44-
export GOPATH=$GITHUB_WORKSPACE/go
45-
export PATH=$PATH:$GOPATH
46-
cd starport/interface/cli/starport
47-
packr2 -v
48-
4940
- name: Install Starport
5041
working-directory: ${{ env.working-directory }}
5142
run: |
@@ -54,3 +45,5 @@ jobs:
5445
- name: Run Integration Tests
5546
working-directory: ${{ env.working-directory }}
5647
run: ./scripts/test-integration
48+
env:
49+
GONAME: "go1.15"

.github/workflows/test-relayer.yml

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

0 commit comments

Comments
 (0)