-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace RabbitMQ service by setup inside container
- Loading branch information
1 parent
ac34104
commit 2108635
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,21 +28,14 @@ jobs: | |
GCMD_SYNC_RECIPIENTS: gcmd@localhost | ||
CELERY_BROKER_URL: amqp://guest:guest@rabbitmq:5672/ | ||
|
||
services: | ||
rabbitmq: | ||
image: rabbitmq:latest | ||
env: | ||
RABBITMQ_DEFAULT_USER: guest | ||
RABBITMQ_DEFAULT_PASS: guest | ||
ports: | ||
- 5672:5672 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Setup PostgreSQL with Postgis | ||
uses: huaxk/[email protected] | ||
with: | ||
|
@@ -51,6 +44,11 @@ jobs: | |
postgresql user: admg | ||
postgresql password: admg | ||
|
||
- name: Setup RabbitMQ | ||
uses: nijel/[email protected] | ||
with: | ||
rabbitmq version: latest | ||
|
||
- name: Install GDAL | ||
run: | | ||
sudo apt-get update -y | ||
|