From 098717bb44afd766ed696269dceb85313fffcaf6 Mon Sep 17 00:00:00 2001
From: Dmitry Romanov <romanov@jlab.org>
Date: Fri, 2 Apr 2021 22:23:13 +0000
Subject: [PATCH] CI stub to check server is working

---
 .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..0a8e2ee
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+stages:
+  - deploy
+
+pages:
+  image: eicweb.phy.anl.gov:4567/containers/eic_container/alpine
+  stage: deploy
+  needs: ['gen_doxygen_src']
+  rules:
+    - if: '$CI_SERVER_HOST == "gitlab.phy.anl.gov" && $CI_COMMIT_BRANCH == "master"' 
+  script:
+    - apk update && apk add doxygen  graphviz ttf-ubuntu-font-family
+    - mkdir -p public && echo "Hello!" public/index.html
+  artifacts:
+    paths:
+    - public
+
-- 
GitLab