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