From: Thibault Saunier Date: Wed, 21 Nov 2018 21:16:12 +0000 (-0300) Subject: Add a .gitlab-ci.yml file to build and export the doc as gitlab pages X-Git-Tag: 1.19.3~489^2~197 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6dc194e8fcf6dff8603b904e245655030d2803d3;p=platform%2Fupstream%2Fgstreamer.git Add a .gitlab-ci.yml file to build and export the doc as gitlab pages --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e30f04d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +deploy: + image: 'registry.freedesktop.org/gstreamer/gst-ci/amd64/fedora-build:latest' + stage: deploy + + script: + - dnf install -y cmake + - pip3 install --upgrade hotdoc meson + - meson build/ + - ninja -C build/ GStreamer-doc + - mv build/GStreamer-doc/html documentation/ + - ARTIFACTS_PATH=$(echo "${CI_JOB_URL}/artifacts/documentation/index.html" |sed "s/${CI_PROJECT_NAMESPACE}/-/g" | sed "s/gitlab/${CI_PROJECT_NAMESPACE}.pages/g") + - echo "" + - echo "==========================================" + - echo "You can find the result at $ARTIFACTS_PATH" + - echo "==========================================" + - echo "" + + artifacts: + paths: + - documentation/ \ No newline at end of file