Skip to content

Commit ff82c2e

Browse files
authored
Merge pull request #9409 from rabbitmq/rin/match-rabbitmq_mqtt-bazel-make
Fix bazel/make discrepancies
2 parents 5a8046b + 9ffb3c1 commit ff82c2e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/check-build-system-equivalence.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: UPLOAD package-generic-unix.tar.xz
6565
uses: actions/[email protected]
6666
with:
67-
name: bazel-package-generic-unix.tar.xz
67+
name: bazel-package-generic-unix-${{ env.VERSION }}.tar.xz
6868
path: ${{ env.archives_dir }}/package-generic-unix.tar.xz
6969
if-no-files-found: error
7070

@@ -99,7 +99,7 @@ jobs:
9999
- name: UPLOAD package-generic-unix.tar.xz
100100
uses: actions/[email protected]
101101
with:
102-
name: make-package-generic-unix.tar.xz
102+
name: make-package-generic-unix-${{ env.VERSION }}.tar.xz
103103
path: PACKAGES/rabbitmq-server-generic-unix-*.tar.xz
104104
if-no-files-found: error
105105

@@ -124,11 +124,11 @@ jobs:
124124
- name: DOWNLOAD bazel-package-generic-unix.tar.xz
125125
uses: actions/download-artifact@v3
126126
with:
127-
name: bazel-package-generic-unix.tar.xz
127+
name: bazel-package-generic-unix-${{ env.VERSION }}.tar.xz
128128
- name: DOWNLOAD make-package-generic-unix.tar.xz
129129
uses: actions/download-artifact@v3
130130
with:
131-
name: make-package-generic-unix.tar.xz
131+
name: make-package-generic-unix-${{ env.VERSION }}.tar.xz
132132
- name: EXPAND & COMPARE
133133
run: |
134134
mkdir bazel
@@ -145,8 +145,8 @@ jobs:
145145
find . | sort > ${{ github.workspace }}/make.manifest
146146
popd
147147
148-
tree -L 2 bazel
149-
tree -L 2 make
148+
tree -L 3 bazel
149+
tree -L 3 make
150150
151151
sleep 1
152152

deps/rabbit/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ PLT_APPS += mnesia
151151
dep_syslog = git https://github.com/schlagert/syslog 4.0.0
152152
dep_osiris = git https://github.com/rabbitmq/osiris v1.6.4
153153
dep_systemd = hex 0.6.1
154-
dep_seshat = hex 0.4.0
154+
dep_seshat = git https://github.com/rabbitmq/seshat v0.6.1
155155

156156
define usage_xml_to_erl
157157
$(subst __,_,$(patsubst $(DOCS_DIR)/rabbitmq%.1.xml, src/rabbit_%_usage.erl, $(subst -,_,$(1))))

deps/rabbitmq_mqtt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ BUILD_WITHOUT_QUIC=1
4444
export BUILD_WITHOUT_QUIC
4545

4646
LOCAL_DEPS = ssl
47-
DEPS = ranch rabbit_common rabbit ra
47+
DEPS = ranch rabbit_common rabbit ra amqp10_common
4848
TEST_DEPS = emqtt ct_helper rabbitmq_ct_helpers rabbitmq_ct_client_helpers rabbitmq_management rabbitmq_web_mqtt amqp_client rabbitmq_consistent_hash_exchange rabbitmq_amqp1_0 amqp10_client rabbitmq_stomp rabbitmq_stream
4949

5050
dep_ct_helper = git https://github.com/extend/ct_helper.git master

0 commit comments

Comments
 (0)