From 19d4fc5dedf6844d4df3503b5c44a99ef905138c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 8 Aug 2016 13:41:46 -0500 Subject: [PATCH] Install mako for doc autobuild --- .gitlab-ci.yml | 10 ++++++++++ doc/upload-docs.sh | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6997187..411d932 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,3 +34,13 @@ Python 3.5 POCL: - pocl except: - tags + +Documentation: + script: + - EXTRA_INSTALL="numpy mako" + - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh + - ". ./build-docs.sh" + tags: + - python3.5 + only: + - master diff --git a/doc/upload-docs.sh b/doc/upload-docs.sh index bd5d48a..dc5a9bf 100755 --- a/doc/upload-docs.sh +++ b/doc/upload-docs.sh @@ -1,3 +1,3 @@ #! /bin/sh -rsync --progress --verbose --archive --delete _build/html/* doc-upload:doc/boxtree +rsync --verbose --archive --delete _build/html/* doc-upload:doc/boxtree -- GitLab