Skip to content

vinyl: fix crash in index drop if there is DML request reading from it #4239

vinyl: fix crash in index drop if there is DML request reading from it

vinyl: fix crash in index drop if there is DML request reading from it #4239

Workflow file for this run

name: alpine_3_16
on:
push:
branches:
- 'master'
- 'release/**'
tags:
- '**'
pull_request:
types: [opened, reopened, synchronize, labeled]
workflow_dispatch:
concurrency:
# Update of a developer branch cancels the previously scheduled workflow
# run for this branch. However, the 'master' branch, release branch, and
# tag workflow runs are never canceled.
#
# We use a trick here: define the concurrency group as 'workflow run ID' +
# 'workflow run attempt' because it is a unique combination for any run.
# So it effectively discards grouping.
#
# Important: we cannot use `github.sha` as a unique identifier because
# pushing a tag may cancel a run that works on a branch push event.
group: ${{ (
github.ref == 'refs/heads/master' ||
startsWith(github.ref, 'refs/heads/release/') ||
startsWith(github.ref, 'refs/tags/')) &&
format('{0}-{1}', github.run_id, github.run_attempt) ||
format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: true
jobs:
alpine_3_16:
# Run on push to the 'master' and release branches of tarantool/tarantool
# or on pull request if the 'full-ci' label is set.
if: github.repository == 'tarantool/tarantool' &&
( github.event_name != 'pull_request' ||
contains(github.event.pull_request.labels.*.name, 'full-ci') )
runs-on: ubuntu-20.04-self-hosted
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
build-type: [ '', 'gc64' ]
env:
OS: 'alpine'
DIST: '3.16'
steps:
- name: Prepare checkout
uses: tarantool/actions/prepare-checkout@master
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- uses: ./.github/actions/environment
- name: Get ABUILD_KEY
run: |
echo "ABUILD_KEY<<EOF" >> $GITHUB_ENV
if ${{ secrets.ALPINE_BUILD_KEY == '' }}; then
# Generate a test build key when the secret is empty. It is needed
# for fork PRs where secrets are unavailable.
echo "$(docker run --rm packpack/packpack:${OS}-${DIST} \
sh -c 'abuild-keygen -q -n && cat /root/.abuild/*.rsa')" \
>> $GITHUB_ENV
else
echo "${{ secrets.ALPINE_BUILD_KEY }}" >> $GITHUB_ENV
fi
echo "EOF" >> $GITHUB_ENV
- name: packaging
env:
GC64: ${{ matrix.build-type == 'gc64' }}
run: make -f .pack.mk package
- name: Send VK Teams message on failure
if: failure()
uses: ./.github/actions/report-job-status
with:
bot-token: ${{ secrets.VKTEAMS_BOT_TOKEN }}
- name: artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: alpine-3.16${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
- name: Upload artifacts to S3
uses: ./.github/actions/s3-upload-artifact
if: ( success() || failure() ) && ( github.ref == 'refs/heads/master' ||
startsWith(github.ref, 'refs/heads/release/') ||
startsWith(github.ref, 'refs/tags/') )
with:
job-name: ${{ github.job }} (${{ join(matrix.*, ', ') }})
access-key-id: ${{ secrets.MULTIVAC_S3_ACCESS_KEY_ID }}
secret-access-key: ${{ secrets.MULTIVAC_S3_SECRET_ACCESS_KEY }}
source: ${{ env.VARDIR }}/artifacts