-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: treat addresses as strings * fix: compile errors, test failures * fix: works-1 * feat: integrate ostracon * fix: bump up ostracon * fix: lint error * fix: bump up ostracon * fix: self review * fix: modify changelog * fix: disable arm building * fix: bls build failure on arm * fix: bls build failure on arm * fix: bls build failure on arm
- Loading branch information
Woosang Son
authored
Sep 10, 2021
1 parent
4952956
commit 84db942
Showing
264 changed files
with
3,839 additions
and
2,697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,8 +38,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go-arch: ["amd64", "arm", "arm64"] | ||
include: | ||
- goarch: "amd64" | ||
gcc: "gcc" | ||
package: "" | ||
- goarch: "arm64" | ||
gcc: "aarch64-linux-gnu-gcc" | ||
package: "g++-aarch64-linux-gnu" | ||
- goarch: "arm" | ||
gcc: "arm-linux-gnueabi-gcc" | ||
package: "g++-arm-linux-gnueabi" | ||
steps: | ||
- run: sudo apt update && sudo apt install -y ${{ matrix.package }} qemu-user-binfmt | ||
if: "matrix.package != ''" | ||
- uses: actions/checkout@v2 | ||
- uses: actions/[email protected] | ||
with: | ||
|
@@ -52,7 +63,7 @@ jobs: | |
go.mod | ||
go.sum | ||
- name: Build | ||
run: GOARCH=${{ matrix.go-arch }} LEDGER_ENABLED=false make build | ||
run: GOOS=linux CGO_ENABLED=1 GOARCH=${{ matrix.goarch }} CC=${{ matrix.gcc }} LEDGER_ENABLED=false make build | ||
|
||
# TODO: disable test-race. please enable this after fixing concurrent checkTx | ||
# test-cosmovisor: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.