Skip to content

Commit

Permalink
Prevent CI job prepare:back to try spinning dependant services
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ferlay authored and andypost committed Oct 9, 2020
1 parent 4f62d4f commit d409c22
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ endif

## Install backend dependencies
back:
docker-compose up -d --remove-orphans php # PHP container is required for composer
docker-compose up -d --remove-orphans --no-deps php # PHP container is required for composer
ifneq ($(strip $(ADD_PHP_EXT)),)
# Install additional php extensions as this goal used in CI (todo stop doing it)
$(call php-0, apk add --no-cache $(ADD_PHP_EXT))
endif
ifeq ($(INSTALL_DEV_DEPENDENCIES), TRUE)
@echo "INSTALL_DEV_DEPENDENCIES=$(INSTALL_DEV_DEPENDENCIES)"
@echo "Installing composer dependencies, including dev ones"
Expand Down

0 comments on commit d409c22

Please sign in to comment.