diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..0a8e2ee0c737aa2984d54a451ac75f67139ef6cb --- /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 +