forked from mongodb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sam Kleinman
committed
Feb 20, 2015
1 parent
b4212a9
commit 73e6896
Showing
2 changed files
with
38 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
tasks: | ||
- name: "install" | ||
commands: shell.exec | ||
params: | ||
script: | | ||
sudo apt-get -y install fonts-inconsolata ttf-adf-gillius imagemagick inkscape | ||
sudo apt-get -y install texlive-latex-base texlive-latex-extra texlive-fonts-recommended | ||
sudo pip install -r requirements.txt | ||
- name: "generate_source" | ||
commands: shell.exec | ||
params: | ||
script: | | ||
giza generate source | ||
- name: "build_sphinx" | ||
commands: shell.exec | ||
params: | ||
script: | | ||
giza generate sphinx --builder publish | ||
- name: "package" | ||
commands: shell.exec | ||
params: | ||
script: | | ||
giza env package --builder publish | ||
giza packaging create --target push | ||
# TODO: deploy build/archive/* to s3 | ||
|
||
buildvariants: | ||
- name: ubuntu1404-release | ||
display_name: "Ubuntu 14.04" | ||
run_on: | ||
- ubuntu1404-test | ||
tasks: | ||
- name: "install" | ||
- name: "generate_source" | ||
- name: "build_sphinx" | ||
- name: "package" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
PyYAML | ||
Sphinx | ||
dtf | ||
argparse | ||
fabric | ||
distribute | ||
droopy | ||
sphinx-intl | ||
transifex-client | ||
sphinxcontrib-httpdomain | ||
giza |