0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 01:35:18 +00:00
phpv8/Makefile.travis
2018-01-05 19:05:00 +01:00

15 lines
302 B
Makefile

# Configure and build scripts for travis CI system
V8VER ?= 6.3
IMAGENAME ?= v8js-test
export NO_INTERACTION=1
export REPORT_EXIT_STATUS=1
build:
envsubst < Dockerfile.travis > Dockerfile.tmp
docker build -t $(IMAGENAME) -f Dockerfile.tmp .
test: build
docker run --rm -t $(IMAGENAME) make test