Skip to content

Commit

Permalink
Update for RabbitMQ 3.10, 3.11
Browse files Browse the repository at this point in the history
Update OTP test version

Update makefiles from rabbitmq/rabbitmq-server main branch
  • Loading branch information
lukebakken committed Oct 14, 2022
1 parent a345674 commit 38356e3
Show file tree
Hide file tree
Showing 5 changed files with 349 additions and 136 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ jobs:
strategy:
fail-fast: false
matrix:
otp-version: [23, 24]
otp-version: [23, 24, 25]
elixir-version: ['1.14']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp-version}}
elixir-version: 1.11.4
otp-version: ${{ matrix.otp-version }}
elixir-version: ${{ matrix.elixir-version }}
- name: Compile
run: make
- name: Test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.ignore
.sw?
.*.sw?
*.beam
Expand Down
9 changes: 1 addition & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT = rabbitmq_email
PROJECT_DESCRIPTION = RabbitMQ plugin that converts incoming emails into messages and messages into outgoing emails
RABBITMQ_VERSION ?= v3.9.x
RABBITMQ_VERSION ?= v3.11.x

# Note: must be the same version as in rabbitmq-components.mk
DEP_RANCH_VERSION = 2.1.0
Expand Down Expand Up @@ -40,13 +40,6 @@ distclean:: delete-test/system_SUITE_data/samples.zip
@:

include rabbitmq-components.mk

dep_amqp_client = git_rmq-subfolder rabbitmq-erlang-client $(RABBITMQ_VERSION)
dep_rabbit_common = git_rmq-subfolder rabbitmq-common $(RABBITMQ_VERSION)
dep_rabbit = git_rmq-subfolder rabbitmq-server $(RABBITMQ_VERSION)
dep_rabbitmq_ct_client_helpers = git_rmq-subfolder rabbitmq-ct-client-helpers $(RABBITMQ_VERSION)
dep_rabbitmq_ct_helpers = git_rmq-subfolder rabbitmq-ct-helpers $(RABBITMQ_VERSION)

include erlang.mk

autopatch-gen_smtp::
Expand Down
Loading

0 comments on commit 38356e3

Please sign in to comment.