From 55f2e955d16fe69eea8b35a7db8edb9a14016cf2 Mon Sep 17 00:00:00 2001
From: Whitney Armstrong <warmstrong@anl.gov>
Date: Mon, 20 Jul 2020 20:25:37 -0500
Subject: [PATCH] 	new file:   .gitlab-ci.yml

---
 .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..ce102a90
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,30 @@
+image: eicweb.phy.anl.gov:4567/containers/eic_container/eic_container:latest 
+
+stages:
+  - phase1
+  - phase1
+
+#compile:
+#  stage: build
+#  #tags:
+#  #   - singularity
+#  script:
+#    - ./bin/do_build
+#
+#      #trigger:
+#      #  stage: containerize
+#      #  script: curl -X POST -F token=8806e69cdc802d752413e8a31554a2 -F ref=master https://eicweb.phy.anl.gov/api/v4/projects/290/trigger/pipeline
+#      #
+
+pages:
+  image: alpine
+  when: manual
+  stage: build
+  script:
+  - apk update && apk add doxygen  graphviz ttf-ubuntu-font-family
+  - cd doc && doxygen Doxyfile && mv doxygen_output/html/ ../public/
+  artifacts:
+    paths:
+    - public
+  only:
+  - master
-- 
GitLab