Building Sphinx documentation and deploying build artifacts using Bitbucket Pipelines?

Brian King July 7, 2016

Hi,

I just received an invite for the Bitbucket Pipelines beta, psyched to try it out. I'm attempting to build Sphinx docs (and possibly MkDocs) documentation and then deploy the build artifacts generated from make html and make latexpdf (in the case of Sphinx).

I know services such as ReadTheDocs are available, however, in this use case I need the documentation generated by Sphinx or MkDocs to remain private.

Can anyone offer any guidance as to accomplish any of the following:

  • Commit build artifacts as a release in source repo (3rd best, tied with downloading build artifacts)
  • Provide a method of downloading the build artifacts as a zip/tar.gz (3rd best, tied with downloading build artifacts)
  • Deploy the HTML (and PDF, when using Sphinx) to Bitbucket Aerobatic (2nd best option)
  • Deploy the HTML (and PDF, when using Sphinx) to CentOS server via SSH/FTP (best option)

Here's the Bitbucket Pipelines file I quickly mashed up, however, I just found a few Docker images for Sphinx that will likely be a much better option to cut down on pipelines processing time (as this build took over 1 hour since Latexpdf is so large).

bitbucket-pipelines.yml

# You can use a Docker image from Docker Hub or your own container
# registry for your build environment.
image: python:2.7
pipelines:
  default:
    - step:
        script: # Modify the commands below to build your repository.
          - apt-get -qq update
          - apt-get install -y texlive-full
          - pip install -r requirements.txt
          - make html
          - make latexpdf

Thanks!

2 answers

0 votes
Steven Vaccarella
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 12, 2016

I just wrote up this guide on setting up ssh public-key authentication for use inside Pipelines. It seems like it might help with your preferred option.

https://answers.atlassian.com/questions/39429257

0 votes
Brian King July 7, 2016

The build succeeds and I know the artifacts are inside the container at: 

Build finished. The HTML pages are in build/html.

 

pdflatex finished; the PDF files are in build/latex.

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events