From 6ad2048907876e435343b9a1b25376c820bb0405 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 28 Oct 2017 15:46:44 +0200 Subject: [PATCH] added initial .gitlab-ci.yml file --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..538b6f8 --- /dev/null +++ b/.gitlab-ci.yml @@ -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