Skip to content

Commit

Permalink
CI: Use RabbitMQ Production Version
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Dec 20, 2023
1 parent f439d4c commit 425501f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ concurrency:


env:
# use the same rabbitmq version as what's used in production (EWMS)
# - image.tag -> https://github.com/Observation-Management-Service/path-kubernetes/blob/main/helm-values-rabbitmq-bitnami.yaml
# - (https://artifacthub.io/packages/helm/bitnami/rabbitmq/11.14.3)
RABBITMQ_IMAGE: bitnami/rabbitmq:3.11.15-debian-11-r0
#
PY_COLORS: "1"
BOT_NAME: wipacdevbot
BOT_EMAIL: [email protected]
Expand Down Expand Up @@ -132,7 +137,7 @@ jobs:
# SKYSCAN_BROKER_AUTH: user1 # using this would override password in address
services:
rabbitmq:
image: bitnami/rabbitmq:3.12.9
image: ${{ env.RABBITMQ_IMAGE }}
env:
RABBITMQ_USERNAME: user1
RABBITMQ_PASSWORD: password
Expand Down Expand Up @@ -242,7 +247,7 @@ jobs:
SKYSCAN_BROKER_AUTH: password # using this would override password in address
services:
rabbitmq:
image: bitnami/rabbitmq:3.12.9
image: ${{ env.RABBITMQ_IMAGE }}
env:
RABBITMQ_USERNAME: user1
RABBITMQ_PASSWORD: password
Expand Down Expand Up @@ -318,7 +323,7 @@ jobs:
SKYSCAN_BROKER_AUTH: password # using this would override password in address
services:
rabbitmq:
image: bitnami/rabbitmq:3.12.9
image: ${{ env.RABBITMQ_IMAGE }}
env:
RABBITMQ_USERNAME: user1
RABBITMQ_PASSWORD: password
Expand Down Expand Up @@ -391,7 +396,7 @@ jobs:
SKYSCAN_BROKER_AUTH: password # using this would override password in address
services:
rabbitmq:
image: bitnami/rabbitmq:3.12.9
image: ${{ env.RABBITMQ_IMAGE }}
env:
RABBITMQ_USERNAME: user1
RABBITMQ_PASSWORD: password
Expand Down

0 comments on commit 425501f

Please sign in to comment.