aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-09-25 09:16:35 -0700
committerchrislu <chris.lu@gmail.com>2023-09-25 09:16:35 -0700
commit3d07895518b2b6e816518be0a2355c1f0a98ff15 (patch)
treef06fda180691efb0b58c9ac0e82988e1cea31e14 /Makefile
parenta6e35e4f685b7713cb863d3f28c85a4b8ae89ab8 (diff)
parenta132d445568f4de6dba617b83b42d9b9cfb1cbd2 (diff)
downloadseaweedfs-3d07895518b2b6e816518be0a2355c1f0a98ff15.tar.xz
seaweedfs-3d07895518b2b6e816518be0a2355c1f0a98ff15.zip
Merge branch 'master' of https://github.com/seaweedfs/seaweedfs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 315a62428..6ca6cae0d 100644
--- a/Makefile
+++ b/Makefile
@@ -10,5 +10,8 @@ install:
full_install:
cd weed; go install -tags "elastic gocdk sqlite ydb tikv"
-tests:
+server: install
+ weed -v 4 server -s3 -filer -volume.max=0 -master.volumeSizeLimitMB=1024 -volume.preStopSeconds=1 -s3.port=8000 -s3.allowEmptyFolder=false -s3.allowDeleteBucketNotEmpty=false -s3.config=./docker/compose/s3.json
+
+test:
cd weed; go test -tags "elastic gocdk sqlite ydb tikv" -v ./...