diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fff3fbaa7dffd8e4f92aa9608ea2bd05aef55bdb
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,27 @@
+variables:
+  TERM: linux
+  JEKYLL_ENV: production
+
+before_script:
+  - export LC_ALL="C.UTF-8"
+  - export LANG="en_US.UTF-8"
+  - export LANGUAGE="en_US.UTF-8"
+  - export GEM_HOME=$HOME/gems
+  - export PATH=$HOME/gems/bin:$PATH
+  - gem install jekyll
+  - gem install bundler
+  - bundle install
+
+job:
+  stage: build
+  tags:
+    - jekyll
+  script:
+    - bundle exec jekyll build
+  artifacts:
+    paths:
+    - _site
+  only:
+  - master
+
+