Merge pull request #13899 from lukebakken/lukebakken/optional-deterministic-build
Trigger a 4.2.x alpha release build / trigger_alpha_build (push) Has been cancelled Details
Test (make) / Build and Xref (1.17, 26) (push) Has been cancelled Details
Test (make) / Build and Xref (1.17, 27) (push) Has been cancelled Details
Test (make) / Test (1.17, 27, khepri) (push) Has been cancelled Details
Test (make) / Test (1.17, 27, mnesia) (push) Has been cancelled Details
Test (make) / Test mixed clusters (1.17, 27, khepri) (push) Has been cancelled Details
Test (make) / Test mixed clusters (1.17, 27, mnesia) (push) Has been cancelled Details
Test (make) / Type check (1.17, 27) (push) Has been cancelled Details

Allow non-deterministic builds
This commit is contained in:
Michael Klishin 2025-05-17 06:55:04 +04:00 committed by GitHub
commit abe306ed8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ ifneq ($(filter rabbitmq_cli,$(BUILD_DEPS) $(DEPS)),)
RMQ_ERLC_OPTS += -pa $(DEPS_DIR)/rabbitmq_cli/ebin RMQ_ERLC_OPTS += -pa $(DEPS_DIR)/rabbitmq_cli/ebin
endif endif
RMQ_ERLC_OPTS += +deterministic RMQ_ERLC_OPTS ?= +deterministic
# Push our compilation options to both the normal and test ERLC_OPTS. # Push our compilation options to both the normal and test ERLC_OPTS.
ERLC_OPTS += $(RMQ_ERLC_OPTS) ERLC_OPTS += $(RMQ_ERLC_OPTS)