Merge branch 'master' into admin_interface

This commit is contained in:
Johannes Loher 2017-10-28 16:05:18 +02:00
commit 28e22f08be
4 changed files with 25 additions and 2 deletions

3
.gitignore vendored
View file

@ -6,4 +6,5 @@ __dummy.html
__test__*__
calendar-webapp*
events.json
dub.selections.json
dub.selections.json
generated/*

19
.gitlab-ci.yml Normal file
View 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

View file

@ -35,5 +35,8 @@
],
"versions": [
"VibeUseOpenSSL11"
],
"lflags": [
"-fuse-ld=gold"
]
}

View file

@ -38,7 +38,7 @@ public:
}
}
@("getEventMongoDBEventStore.getEvent failure")
@("MongoDBEventStore.getEvent failure")
@system unittest
{
auto collection = mock!Collection;