Skip to content

Commit

Permalink
Reduce output
Browse files Browse the repository at this point in the history
  • Loading branch information
gocom committed Jan 14, 2020
1 parent 215115d commit 11f686e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
IMAGE?=latest

all:
$(MAKE) clean
$(MAKE) build
$(MAKE) install
$(MAKE) cs
$(MAKE) test
@$(MAKE) clean
@$(MAKE) build
@$(MAKE) install
@$(MAKE) cs
@$(MAKE) test

build:
docker-compose build $(IMAGE)
Expand All @@ -22,23 +22,23 @@ update:
docker-compose run $(IMAGE) composer update

cs:
$(MAKE) install
@$(MAKE) install
docker-compose run $(IMAGE) composer cs

csfix:
$(MAKE) install
@$(MAKE) install
docker-compose run $(IMAGE) composer csfix

test:
$(MAKE) install
@$(MAKE) install
docker-compose run $(IMAGE) composer test

unit:
$(MAKE) install
@$(MAKE) install
docker-compose run $(IMAGE) composer test:unit

static:
$(MAKE) install
@$(MAKE) install
docker-compose run $(IMAGE) composer test:static

clean:
Expand All @@ -48,9 +48,9 @@ ifeq ($(IMAGE),latest)
endif

testall:
$(MAKE) test IMAGE=latest
$(MAKE) test IMAGE=php_7_3
$(MAKE) test IMAGE=php_7_2
@$(MAKE) test IMAGE=latest
@$(MAKE) test IMAGE=php_7_3
@$(MAKE) test IMAGE=php_7_2

docs:
docker-compose run phpdoc --template markdown
Expand Down

0 comments on commit 11f686e

Please sign in to comment.