From b6453cccfe8c817041fcdabcb2397570c1adf22c Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Wed, 2 Dec 2015 03:02:45 -0500 Subject: [PATCH] Initial attempt at getting the library to use continual integration. This will attempt to get the linux build to work on the gitlab shared runner ci system. --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..709fe74 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +before_script: + - bundle_install + +stages: + - build + - test + - deploy + +build_linux: + stage: build + script: + - cargo build + only: + - master + tags: + - linux