Skip to content

Commit 7277fa3

Browse files
committed
fix(ci) add --frozen to install-dev
uv updates the lock file by default. This leads to changes in dependencies when running the generator. Adding `--frozen` installs dependencies without updating them
1 parent d5fef75 commit 7277fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ install:
88

99
install-dev:
1010
# install services
11-
@for f in $(shell ls ${SERVICES_DIR}); do set -e;uv sync --directory ${SERVICES_DIR}/$${f}; done
11+
@for f in $(shell ls ${SERVICES_DIR}); do set -e;uv sync --frozen --directory ${SERVICES_DIR}/$${f}; done
1212
# install core. This needs to be done last or it will get overriden by the dependency installation of the services
13-
uv sync --directory core
13+
uv sync --frozen --directory core
1414

1515
test-services:
1616
# test core

0 commit comments

Comments
 (0)