forked from jincod/dotnetcore-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
18 lines (14 loc) · 759 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: test test-heroku-20
test: test-heroku-24
test-heroku-20:
@echo "Running tests in docker (heroku-20)..."
@docker run -v $(shell pwd):/buildpack:ro --rm -e "STACK=heroku-20" heroku/heroku:20 bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
@echo ""
test-heroku-22:
@echo "Running tests in docker (heroku-22)..."
@docker run -v $(shell pwd):/buildpack:ro --rm -e "STACK=heroku-22" heroku/heroku:22 bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
@echo ""
test-heroku-24:
@echo "Running tests in docker (heroku-24)..."
@docker run -v $(shell pwd):/buildpack:ro --rm -e "STACK=heroku-24" heroku/heroku:24 bash -c 'cp -r /buildpack ~/buildpack_test; cd ~/buildpack_test/; test/run;'
@echo ""