Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3d48000
Works on mac/linux arm64, and should build anywhere. Has fewer binar…
faddat May 24, 2021
8160860
adds arm binary files
faddat May 24, 2021
eceedd6
Update test-integration.yml
faddat May 24, 2021
d6e64b4
Update test.yml
faddat May 24, 2021
9d1ad70
Update lint.yml
faddat May 24, 2021
63c9115
Update lint.yml
faddat May 24, 2021
f92d658
Add protobufs for mac and linux arm64
faddat May 24, 2021
2653cdc
Merge branch 'arm64-mac-linux' of https://github.com/faddat/starport …
faddat May 24, 2021
e289db4
Change lint action
faddat May 24, 2021
e9b0aa3
update integration
faddat May 24, 2021
7247891
Update test.yml to use Makefile
faddat May 24, 2021
194ef38
break test.yml into steps
faddat May 24, 2021
d05a703
Update package.json
faddat May 25, 2021
a91d6b6
Update gen-nodetime
faddat May 25, 2021
5b0ef7f
Merge branch 'develop' into arm64-mac-linux
faddat May 25, 2021
e5dc601
Update gen-nodetime
faddat May 25, 2021
1241414
Update gen-nodetime
faddat May 25, 2021
2b8106e
Update test.yml
faddat May 25, 2021
cdaa8ec
Update test-integration.yml
faddat May 25, 2021
2b78234
Update lint.yml
faddat May 25, 2021
432720f
Merge branch 'tendermint:develop' into arm64-mac-linux
faddat May 28, 2021
3d0adc5
Update go.mod.plush
faddat May 29, 2021
2abf180
Merge branch 'develop' into arm64-mac-linux
faddat May 30, 2021
5cc5109
Merge remote-tracking branch 'faddat/patch-11' into HEAD
faddat May 30, 2021
c705566
Minor updates
faddat May 31, 2021
4209ca0
Merge branch 'tendermint:develop' into arm64-mac-linux
faddat May 31, 2021
5e86c07
Update gen-nodetime
faddat May 31, 2021
5bc5793
Merge branch 'tendermint:develop' into arm64-mac-linux
faddat Jun 5, 2021
cdfaf8b
Merge branch 'develop' of https://github.com/tendermint/starport into…
faddat Jun 14, 2021
c3c88dc
Merge branch 'tendermint:develop' into arm64-mac-linux
faddat Jun 17, 2021
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
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,18 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v4
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: build
run: make
- uses: golangci/golangci-lint-action@master
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Starport
run: go install ./...
run: make install

- name: Run Integration Tests
run: ./scripts/test-integration
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.16
- run: ./scripts/test-unit
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: install
run: make install
- name: test
run: ./scripts/test-unit
Loading