fix Unpack failed because of tx failed #1003
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
name: FISCO-BCOS Go-SDK GitHub Actions | |
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: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
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 |