mdbx: release closeLock when a cross-thread Abort panics #91
This file contains hidden or 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: Erigon | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: erigon-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-short: | |
| name: erigon make test-short | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| steps: | |
| - name: Checkout mdbx-go | |
| uses: actions/checkout@v6 | |
| with: | |
| path: mdbx-go | |
| persist-credentials: false | |
| # Tracking erigon@main is intentional: erigon is this module's primary | |
| # consumer and the point is catching integration breaks against its | |
| # current state; occasional unrelated upstream failures are acceptable. | |
| - name: Checkout erigon (main) | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: erigontech/erigon | |
| ref: main | |
| path: erigon | |
| persist-credentials: false | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: erigon/go.mod | |
| cache-dependency-path: erigon/go.sum | |
| - name: Point erigon at this mdbx-go | |
| working-directory: erigon | |
| run: go mod edit -replace github.com/erigontech/mdbx-go=../mdbx-go | |
| - name: make test-short | |
| working-directory: erigon | |
| run: make test-short |