Merge branch 'gitlab-ci' into 'master'

added initial .gitlab-ci.yml file

See merge request fsimphy/bayernfahrplan!9
This commit is contained in:
Johannes Loher 2017-10-28 15:55:08 +02:00
commit 892378f55f
1 changed files with 19 additions and 0 deletions

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