Merge branch 'master' into admin_interface
This commit is contained in:
commit
28e22f08be
4 changed files with 25 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,3 +7,4 @@ __test__*__
|
||||||
calendar-webapp*
|
calendar-webapp*
|
||||||
events.json
|
events.json
|
||||||
dub.selections.json
|
dub.selections.json
|
||||||
|
generated/*
|
||||||
|
|
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
image: base/devel
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- pacman -Sy
|
||||||
|
- pacman --noconfirm -S ldc dub libevent
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- test
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- dub build --compiler=ldc2
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- dub test --compiler=ldc2
|
3
dub.json
3
dub.json
|
@ -35,5 +35,8 @@
|
||||||
],
|
],
|
||||||
"versions": [
|
"versions": [
|
||||||
"VibeUseOpenSSL11"
|
"VibeUseOpenSSL11"
|
||||||
|
],
|
||||||
|
"lflags": [
|
||||||
|
"-fuse-ld=gold"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@("getEventMongoDBEventStore.getEvent failure")
|
@("MongoDBEventStore.getEvent failure")
|
||||||
@system unittest
|
@system unittest
|
||||||
{
|
{
|
||||||
auto collection = mock!Collection;
|
auto collection = mock!Collection;
|
||||||
|
|
Loading…
Reference in a new issue