build(Makefile): implement dependencies-backend target

This commit is contained in:
Sarah Vaupel 2024-11-06 15:28:16 +01:00
parent e8d8aafccd
commit b99472288d
2 changed files with 10 additions and 1 deletions

View File

@ -146,6 +146,12 @@ compile-%: CF_PREFIX = compile-
compile-%: CONTAINER_ATTACHED = true
compile-%: --act ;
.PHONY: dependencies-%
compile-%: JOB=dependencies
compile-%: CF_PREFIX = dependencies-
compile-%: CONTAINER_ATTACHED = true
compile-%: --act ;
.PHONY: test-%
test-%: JOB=test
test-%: CF_PREFIX = test-
@ -232,6 +238,9 @@ endif
# HELP(compile-backend): compile backend binaries
--compile-backend:
stack build --fast --profile --library-profiling --lock-file ignore --executable-profiling --flag uniworx:-library-only $(--DEVELOPMENT) --local-bin-path $$(pwd)/bin
# HELP(dependencies-backend): (re-)build backend dependencies
--dependencies-backend: stack.yaml stack.yaml.lock package.yaml
stack build --fast --only-dependencies
# HELP(lint-backend): lint backend
--lint-backend:
stack build --test --fast --work-dir=.stack-work-test --flag uniworx:library-only $(--DEVELOPMENT) uniworx:test:hlint

View File

@ -20,7 +20,7 @@ ENV HOME="${PROJECT_DIR}"
RUN mkdir -p "${PROJECT_DIR}/.stack"
ENV STACK_ROOT="${PROJECT_DIR}/.stack"
RUN make -- --.stack STACK_ROOT=${STACK_ROOT} IN_CONTAINER=true
RUN make -- --dependencies-backend STACK_ROOT=${STACK_ROOT} IN_CONTAINER=true
RUN stack --work-dir .stack-work-run install yesod-bin
RUN chmod -R 777 .stack .stack-work-build .stack-work-run .stack-work-test .stack-work-doc || :