mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Add servers as submodules
This commit is contained in:
parent
b346e2ea07
commit
6a2dc53db9
7 changed files with 17 additions and 8 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,7 +1,3 @@
|
||||||
tests/storage/servers/*
|
|
||||||
!tests/storage/servers/__init__.py
|
|
||||||
!tests/storage/servers/radicale
|
|
||||||
!tests/storage/servers/skip
|
|
||||||
*.pyc
|
*.pyc
|
||||||
__pycache__
|
__pycache__
|
||||||
htmlcov
|
htmlcov
|
||||||
|
|
|
||||||
12
.gitmodules
vendored
Normal file
12
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
[submodule "tests/storage/servers/baikal"]
|
||||||
|
path = tests/storage/servers/baikal
|
||||||
|
url = https://github.com/vdirsyncer/baikal-testserver
|
||||||
|
[submodule "tests/storage/servers/owncloud"]
|
||||||
|
path = tests/storage/servers/owncloud
|
||||||
|
url = https://github.com/vdirsyncer/owncloud-testserver
|
||||||
|
[submodule "tests/storage/servers/mysteryshack"]
|
||||||
|
path = tests/storage/servers/mysteryshack
|
||||||
|
url = https://github.com/vdirsyncer/mysteryshack-testserver
|
||||||
|
[submodule "tests/storage/servers/davical"]
|
||||||
|
path = tests/storage/servers/davical
|
||||||
|
url = https://github.com/vdirsyncer/davical-testserver
|
||||||
5
Makefile
5
Makefile
|
|
@ -12,10 +12,7 @@ install-servers:
|
||||||
set -ex; \
|
set -ex; \
|
||||||
for server in $(DAV_SERVER) $(REMOTESTORAGE_SERVER); do \
|
for server in $(DAV_SERVER) $(REMOTESTORAGE_SERVER); do \
|
||||||
if [ ! -d "$(TESTSERVER_BASE)$$server/" ]; then \
|
if [ ! -d "$(TESTSERVER_BASE)$$server/" ]; then \
|
||||||
git clone --depth=1 \
|
git submodule update --init -- "$(TESTSERVER_BASE)$$server"; \
|
||||||
https://github.com/vdirsyncer/$$server-testserver.git \
|
|
||||||
/tmp/$$server-testserver; \
|
|
||||||
ln -s /tmp/$$server-testserver $(TESTSERVER_BASE)$$server; \
|
|
||||||
fi; \
|
fi; \
|
||||||
(cd $(TESTSERVER_BASE)$$server && sh install.sh); \
|
(cd $(TESTSERVER_BASE)$$server && sh install.sh); \
|
||||||
done
|
done
|
||||||
|
|
|
||||||
1
tests/storage/servers/baikal
Submodule
1
tests/storage/servers/baikal
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b3f2f5df327dec0add73a262e015954fb56287f6
|
||||||
1
tests/storage/servers/davical
Submodule
1
tests/storage/servers/davical
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit cce1273cc883f3cdb3ccf37097b29ac0263b7055
|
||||||
1
tests/storage/servers/mysteryshack
Submodule
1
tests/storage/servers/mysteryshack
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit addee3272a4289b78e3c816e0fcb4ccace0df336
|
||||||
1
tests/storage/servers/owncloud
Submodule
1
tests/storage/servers/owncloud
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9f4b305b7e77fa42f8c1875099236ecb792b40dc
|
||||||
Loading…
Reference in a new issue