Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 73b3924

Browse files
committed
feat: add Makefile
1 parent ad65980 commit 73b3924

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
TILE38_CONTAINER_NAME=t38c-test
2+
3+
e2e_start_tile38:
4+
docker run -d -p 9851:9851 --name ${TILE38_CONTAINER_NAME} tile38/tile38
5+
6+
e2e_run:
7+
export T38C_TEST_E2E=1; \
8+
export T38C_TEST_ADDR=localhost:9851; \
9+
go test --count=1 ./e2e/...
10+
11+
e2e_stop_tile38:
12+
docker rm -f ${TILE38_CONTAINER_NAME}

0 commit comments

Comments
 (0)