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

1
.gitignore vendored
View file

@ -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
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": [ "versions": [
"VibeUseOpenSSL11" "VibeUseOpenSSL11"
],
"lflags": [
"-fuse-ld=gold"
] ]
} }

View file

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