File: Makefile

package info (click to toggle)
php-async-aws-sqs 2.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 668 kB
  • sloc: php: 4,064; makefile: 33
file content (15 lines) | stat: -rw-r--r-- 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.EXPORT_ALL_VARIABLES:

initialize: start-docker
start-docker:
	docker start async_aws_sqs && exit 0 || \
	docker pull asyncaws/testing-sqs && \
	docker run -d -p 9494:9494 --name async_aws_sqs asyncaws/testing-sqs

test: initialize
	./vendor/bin/phpunit

clean: stop-docker
stop-docker:
	docker stop async_aws_sqs || true
	docker rm async_aws_sqs || true