diff --git a/.github/workflows/fedora_30.yml b/.github/workflows/fedora_30.yml
deleted file mode 100644
index 4dc8929fbb351b4c12d6d564e71ab84e6b3f3dcd..0000000000000000000000000000000000000000
--- a/.github/workflows/fedora_30.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: fedora_30
-
-on:
-  push:
-    branches:
-      - 'master'
-      - '[0-9].[0-9]+'
-    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 (1.10,
-  # 2.8, etc.), 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' ||
-    github.ref == 'refs/heads/1.10' ||
-    startsWith(github.ref, 'refs/heads/2.') ||
-    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:
-  fedora_30:
-    # 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
-
-    strategy:
-      fail-fast: false
-      matrix:
-        build-type: [ '', 'gc64' ]
-
-    steps:
-      - uses: actions/checkout@v2.3.4
-        with:
-          fetch-depth: 0
-          submodules: recursive
-      - uses: ./.github/actions/environment
-      - name: packaging
-        env:
-          RWS_AUTH: ${{ secrets.RWS_AUTH }}
-          OS: 'fedora'
-          DIST: '30'
-          GC64: ${{ matrix.build-type == 'gc64' }}
-        uses: ./.github/actions/pack_and_deploy
-      - name: call action to send Telegram message on failure
-        env:
-          TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }}
-          TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }}
-        uses: ./.github/actions/send-telegram-notify
-        if: failure()
-      - name: artifacts
-        uses: actions/upload-artifact@v2
-        if: failure()
-        with:
-          name: fedora-30
-          retention-days: 21
-          path: build/usr/src/*/tarantool-*/test/var/artifacts
diff --git a/.github/workflows/fedora_31.yml b/.github/workflows/fedora_31.yml
deleted file mode 100644
index a432c3640860e57c67d938ad0b01a8068c6a0eb3..0000000000000000000000000000000000000000
--- a/.github/workflows/fedora_31.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: fedora_31
-
-on:
-  push:
-    branches:
-      - 'master'
-      - '[0-9].[0-9]+'
-    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 (1.10,
-  # 2.8, etc.), 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' ||
-    github.ref == 'refs/heads/1.10' ||
-    startsWith(github.ref, 'refs/heads/2.') ||
-    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:
-  fedora_31:
-    # 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
-
-    strategy:
-      fail-fast: false
-      matrix:
-        build-type: [ '', 'gc64' ]
-
-    steps:
-      - uses: actions/checkout@v2.3.4
-        with:
-          fetch-depth: 0
-          submodules: recursive
-      - uses: ./.github/actions/environment
-      - name: packaging
-        env:
-          RWS_AUTH: ${{ secrets.RWS_AUTH }}
-          OS: 'fedora'
-          DIST: '31'
-          GC64: ${{ matrix.build-type == 'gc64' }}
-        uses: ./.github/actions/pack_and_deploy
-      - name: call action to send Telegram message on failure
-        env:
-          TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }}
-          TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }}
-        uses: ./.github/actions/send-telegram-notify
-        if: failure()
-      - name: artifacts
-        uses: actions/upload-artifact@v2
-        if: failure()
-        with:
-          name: fedora-31
-          retention-days: 21
-          path: build/usr/src/*/tarantool-*/test/var/artifacts
diff --git a/.github/workflows/fedora_32.yml b/.github/workflows/fedora_32.yml
deleted file mode 100644
index b95cae1db4052a4774781a5c45d8b10b21fd29d8..0000000000000000000000000000000000000000
--- a/.github/workflows/fedora_32.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: fedora_32
-
-on:
-  push:
-    branches:
-      - 'master'
-      - '[0-9].[0-9]+'
-    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 (1.10,
-  # 2.8, etc.), 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' ||
-    github.ref == 'refs/heads/1.10' ||
-    startsWith(github.ref, 'refs/heads/2.') ||
-    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:
-  fedora_32:
-    # 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
-
-    strategy:
-      fail-fast: false
-      matrix:
-        build-type: [ '', 'gc64' ]
-
-    steps:
-      - uses: actions/checkout@v2.3.4
-        with:
-          fetch-depth: 0
-          submodules: recursive
-      - uses: ./.github/actions/environment
-      - name: packaging
-        env:
-          RWS_AUTH: ${{ secrets.RWS_AUTH }}
-          OS: 'fedora'
-          DIST: '32'
-          GC64: ${{ matrix.build-type == 'gc64' }}
-        uses: ./.github/actions/pack_and_deploy
-      - name: call action to send Telegram message on failure
-        env:
-          TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }}
-          TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }}
-        uses: ./.github/actions/send-telegram-notify
-        if: failure()
-      - name: artifacts
-        uses: actions/upload-artifact@v2
-        if: failure()
-        with:
-          name: fedora-32
-          retention-days: 21
-          path: build/usr/src/*/tarantool-*/test/var/artifacts
diff --git a/.github/workflows/fedora_33.yml b/.github/workflows/fedora_33.yml
deleted file mode 100644
index 0fd84e1524593cd380e2aa56a2c89386b1468b12..0000000000000000000000000000000000000000
--- a/.github/workflows/fedora_33.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: fedora_33
-
-on:
-  push:
-    branches:
-      - 'master'
-      - '[0-9].[0-9]+'
-    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 (1.10,
-  # 2.8, etc.), 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' ||
-    github.ref == 'refs/heads/1.10' ||
-    startsWith(github.ref, 'refs/heads/2.') ||
-    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:
-  fedora_33:
-    # 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
-
-    strategy:
-      fail-fast: false
-      matrix:
-        build-type: [ '', 'gc64' ]
-
-    steps:
-      - uses: actions/checkout@v2.3.4
-        with:
-          fetch-depth: 0
-          submodules: recursive
-      - uses: ./.github/actions/environment
-      - name: packaging
-        env:
-          RWS_AUTH: ${{ secrets.RWS_AUTH }}
-          OS: 'fedora'
-          DIST: '33'
-          GC64: ${{ matrix.build-type == 'gc64' }}
-        uses: ./.github/actions/pack_and_deploy
-      - name: call action to send Telegram message on failure
-        env:
-          TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }}
-          TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }}
-        uses: ./.github/actions/send-telegram-notify
-        if: failure()
-      - name: artifacts
-        uses: actions/upload-artifact@v2
-        if: failure()
-        with:
-          name: fedora-33
-          retention-days: 21
-          path: build/usr/src/*/tarantool-*/test/var/artifacts
diff --git a/.github/workflows/fedora_33_aarch64.yml b/.github/workflows/fedora_33_aarch64.yml
deleted file mode 100644
index 36ae5fb7621faa364fe2e018f50b2fe4b1991738..0000000000000000000000000000000000000000
--- a/.github/workflows/fedora_33_aarch64.yml
+++ /dev/null
@@ -1,68 +0,0 @@
-name: fedora_33_aarch64
-
-on:
-  push:
-    branches:
-      - 'master'
-      - '[0-9].[0-9]+'
-    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 (1.10,
-  # 2.8, etc.), 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' ||
-    github.ref == 'refs/heads/1.10' ||
-    startsWith(github.ref, 'refs/heads/2.') ||
-    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:
-  fedora_33_aarch64:
-    # 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: graviton
-
-    steps:
-      - uses: actions/checkout@v2.3.4
-        with:
-          fetch-depth: 0
-          submodules: recursive
-      - uses: ./.github/actions/environment
-      - name: packaging
-        env:
-          RWS_AUTH: ${{ secrets.RWS_AUTH }}
-          OS: 'fedora'
-          DIST: '33'
-        uses: ./.github/actions/pack_and_deploy
-      - name: call action to send Telegram message on failure
-        env:
-          TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }}
-          TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }}
-        uses: ./.github/actions/send-telegram-notify
-        if: failure()
-      - name: artifacts
-        uses: actions/upload-artifact@v2
-        if: failure()
-        with:
-          name: fedora-33
-          retention-days: 21
-          path: build/usr/src/*/tarantool-*/test/var/artifacts
diff --git a/changelogs/unreleased/drop-fedora-30-31-32-33-ci-cd.md b/changelogs/unreleased/drop-fedora-30-31-32-33-ci-cd.md
new file mode 100644
index 0000000000000000000000000000000000000000..2dcb1c57e67f4e977d627509759401394e02b0d0
--- /dev/null
+++ b/changelogs/unreleased/drop-fedora-30-31-32-33-ci-cd.md
@@ -0,0 +1,3 @@
+## feature/build
+
+* Stop support of Fedora 30/31/32/33 builds.