From 508f42678e73e58965033de75b72ddd81b4e8714 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 22 Feb 2024 17:18:27 -0500 Subject: [PATCH] Add `rabbitmq_stream` plugin to `verify-staged-artifacts` **Auto-cherry-pick to `3.0.x`** --- .github/workflows/verify-staged-artifacts.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/verify-staged-artifacts.yml b/.github/workflows/verify-staged-artifacts.yml index 2c678241..614c4d57 100644 --- a/.github/workflows/verify-staged-artifacts.yml +++ b/.github/workflows/verify-staged-artifacts.yml @@ -19,9 +19,13 @@ jobs: ports: - 5672:5672 - 15672:15672 + - 5552:5552 steps: + - name: Enable RabbitMQ Stream Plugin + run: docker exec ${{ job.services.rabbitmq.id }} rabbitmq-plugins enable rabbitmq_stream + - name: Checkout Samples Repo uses: actions/checkout@v4 with: