1
0
mirror of synced 2024-11-22 03:46:02 +03:00

Update Makefile

This commit is contained in:
Alex Lushpai 2019-06-28 09:44:07 +03:00 committed by GitHub
parent 226b61845b
commit 8249195df4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,12 @@
ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
SRC_DIR=$(ROOT_DIR)/src
BIN_DIR=$(ROOT_DIR)/bin
export PATH := $(PATH):$(ROOT_DIR)/dot
deps:
@echo "==> Installing dependencies"
@curl -L https://getcomposer.org/composer.phar -o $(BIN_DIR)/composer
@COMPOSER_HOME=/tmp php -d memory_limit=-1 $(BIN_DIR)/composer install
test:
@echo "==> Running tests"
@cd $(ROOT_DIR)
ifeq ($(wildcard .env), )
@echo "==> Creating .env file for testing purposes..."
@cp .env.dist .env
endif
@php -d memory_limit=-1 $(BIN_DIR)/phpunit -c phpunit.xml.dist --log-junit $(ROOT_DIR)/test-report.xml
@php -d memory_limit=-1 $(BIN_DIR)/phpunit -c phpunit.xml.dist
@echo "==> Testing complete"
stan:
@ -24,4 +15,4 @@ stan:
@echo "==> Analysis complete"
travis: test stan
@echo "==> Completed"
@echo "==> Completed"