summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvindarel <ehvince@mailz.org>2018-04-03 23:17:03 +0200
committervindarel <ehvince@mailz.org>2018-04-03 23:31:32 +0200
commitc72e28c8e000542d60723f0691e4dd8936b0d082 (patch)
tree29346941da25a2d8ea3aa7237af0eff8a6347a34
parenteef2cb8f9cf1400e05792a542350241a0e80f182 (diff)
gitlab-ci.yml: create a linux binary0.081
-rw-r--r--.gitlab-ci.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 000000000..7357f2602
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,19 @@
+image: daewok/lisp-devel
+
+before_script:
+ - apt install git-core libwebkit2gtk-4.0.37
+ - git clone https://github.com/next-browser/cl-webkit ~/quicklisp/local-projects/
+
+stages:
+ - build
+
+build:
+ stage: build
+ only:
+ # Only when a new tag is pushed.
+ - tags
+ script:
+ - cd next && make build-gtk
+ artifacts:
+ paths:
+ - next/source/next-gtk