-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Makefile, fix up Dockerfile to avoid pip installs
- Loading branch information
Showing
2 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
SHELL = /bin/sh | ||
VERSION = 0.3.0 | ||
|
||
.PHONY: build build-py37 build-py38 build-py39 | ||
.PHONE: test test-py37 test-py38 test-py39 clean | ||
|
||
all: test | ||
|
||
build-py37: | ||
docker build -t "neo4j_arrow:${VERSION}-py37" . | ||
|
||
build-py38: | ||
docker build -t "neo4j_arrow:${VERSION}-py38" . | ||
|
||
build-py39: | ||
docker build -t "neo4j_arrow:${VERSION}-py39" . | ||
|
||
build: build-py37 build-py38 build-py39 | ||
|
||
test-py37: build-py37 | ||
docker run --rm "neo4j_arrow:${VERSION}-py37" | ||
|
||
test-py38: build-py38 | ||
docker run --rm "neo4j_arrow:${VERSION}-py38" | ||
|
||
test-py39: build-py39 | ||
docker run --rm "neo4j_arrow:${VERSION}-py39" | ||
|
||
test: test-py37 test-py38 test-py39 | ||
|
||
clean: | ||
echo nop |