[Mesa-dev] [PATCH 01/16] Added ci yaml file for Gitlab.
Laura Ekstrand
laura at jlekstrand.net
Fri May 25 00:27:04 UTC 2018
For now, all this does is copy our current webpage into a public folder.
Daniel Stone has the server configured to check this public folder and
host the index.html as mesa-test.freedesktop.org. When this patch series
is approved, Daniel will change it to point at mesa-3d.org.
---
.gitlab-ci.yml | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 .gitlab-ci.yml
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000..29b30541b5
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,9 @@
+pages:
+ stage: deploy
+ script:
+ - mkdir .public
+ - cp -r docs/* .public
+ - mv .public public
+ artifacts:
+ paths:
+ - public
--
2.14.3
More information about the mesa-dev
mailing list