Chore: flush out requirement for nightly

This commit is contained in:
Denis Benato
2025-10-20 00:39:17 +02:00
parent d8f06230fa
commit 60fce30a06
7 changed files with 38 additions and 13 deletions

View File

@@ -37,6 +37,15 @@ ifeq ($(X11),1)
ARGS += --features "rog-control-center/x11"
endif
# Always use the versions in Cargo.lock by default
ARGS += --locked
# Allow optionally freezing the build to avoid any network access and enforce Cargo.lock strictly
FROZEN ?= 0
ifeq ($(FROZEN),1)
ARGS += --frozen
endif
VENDORED ?= 0
ifeq ($(VENDORED),1)
ARGS += --frozen