-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Unpack failed because of tx failed (#277)
- Loading branch information
1 parent
fa09460
commit e65ac24
Showing
7 changed files
with
78 additions
and
18 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: FISCO-BCOS Go-SDK GitHub Actions macOS | ||
on: | ||
push: | ||
# branches-ignore: | ||
# - "**-1.3" | ||
# tags-ignore: | ||
# - v1.* | ||
paths-ignore: | ||
- "Changelog.md" | ||
- "README.md" | ||
pull_request: | ||
# branches: | ||
# - '**' | ||
release: | ||
types: [published, created, edited] | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
go: ["1.21", "1.22"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
# - uses: actions/cache@v1 | ||
# id: cache | ||
# with: | ||
# path: deps/ | ||
# key: deps-${{ runner.os }}-${{ github.ref }}-${{ hashFiles('.github/workflows/workflow.yml') }} | ||
# restore-keys: | | ||
# deps-${{ runner.os }}-${{ github.ref }}-${{ hashFiles('.github/workflows/workflow.yml') }} | ||
# deps-${{ runner.os }}-${{ github.ref }} | ||
# deps-${{ runner.os }}- | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: check commit | ||
if: ${{ runner.os == 'Linux' && github.base_ref != 'master' && github.event_name == 'pull_request' }} | ||
run: bash .ci/check-commit.sh | ||
- name: mod tidy | ||
run: go mod tidy | ||
- name: test all | ||
if: ${{ runner.os == 'Linux' }} | ||
run: bash -x .ci/integration_test.sh -a | ||
- name: install deps | ||
if: ${{ runner.os == 'macOS' }} | ||
run: brew install zlib z3 | ||
- name: test without amop | ||
if: ${{ runner.os == 'macOS' }} | ||
run: bash .ci/integration_test.sh |
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