Commit 28edb461 by Tianqi Chen Committed by GitHub

[CI] Force doc build pass to mark success (#158)

parent bc819820
......@@ -4,7 +4,7 @@ This document contains frequently asked questions.
How to Install
--------------
See [Installation](how_to/install.md)
See [Installation](https://github.com/dmlc/tvm/blob/master/docs/how_to/install.md)
TVM's relation to XLA
---------------------
......
......@@ -10,6 +10,10 @@ RUN bash /install/ubuntu_install_llvm.sh
RUN bash /install/ubuntu_install_opencl.sh
RUN bash /install/ubuntu_install_iverilog.sh
# Fix recommonmark to latest version
RUN git clone https://github.com/rtfd/recommonmark
RUN cd recommonmark; python setup.py install
# Environment variables
ENV PATH=/usr/local/nvidia/bin:${PATH}
ENV PATH=/usr/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-14.04/bin:${PATH}
......
#!/bin/bash
cd docs
PYTHONPATH=../python make html
PYTHONPATH=../python make html || exit -1
cd _build/html
tar czf docs.tgz *
mv docs.tgz ../../../
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment