Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 12:54:36 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-02-16 12:54:36 +0300
commit7468ef37ddcdcdefe015093554701597614a4053 (patch)
treefb1be237d5d461c0de23ee97e537ba115aed016a /.gitlab-ci.yml
parentb29e159360765dc01f247160e1b10965786b3f8b (diff)
Added gitlab-ci yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..bc151355
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+image: golang:2.1
+
+# Put the go sources in GOPATH
+# This is required to make the vendor working
+before_script:
+- GODIR=$GOPATH/src/gitlab.com/gitlab-org/gitlab-pages
+- mkdir -p "$(dirname "$GODIR")"
+- ln -sfv "$(pwd -P)" "$GODIR"
+- cd "$GODIR"
+
+test:
+ script:
+ - make verify