diff options
author | Laura Ekstrand <laura@jlekstrand.net> | 2018-05-14 15:58:55 -0700 |
---|---|---|
committer | Laura Ekstrand <laura@jlekstrand.net> | 2018-06-15 16:06:34 -0700 |
commit | fe5839491dc9642e6852a6a71863df6525ed97b0 (patch) | |
tree | cf1efd9836e51699b1d92f74e869b7f2e84e7293 | |
parent | d511bba2f92566c512c86c5f51bd756834cbd444 (diff) |
Added ci yaml file for Gitlab.
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.
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000..66a9bca8a6 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,7 @@ +pages: + stage: deploy + script: + - cp -r docs/* public + artifacts: + paths: + - public |