File: Makefile

package info (click to toggle)
php-async-aws-sqs 2.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 664 kB
  • sloc: php: 4,040; makefile: 31
file content (15 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (2)
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/simple-phpunit

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