forked from cakephp/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.
Merge pull request cakephp#5493 from cakephp/external-theme
RFC - Use an external theme for docs
- Loading branch information
Showing
56 changed files
with
54 additions
and
7,985 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 |
---|---|---|
@@ -1,15 +1,23 @@ | ||
sudo: required | ||
addons: | ||
apt: | ||
packages: | ||
- texlive-latex-recommended | ||
- texlive-latex-extra | ||
- texlive-fonts-recommended | ||
- texlive-lang-all | ||
|
||
services: | ||
- docker | ||
language: python | ||
|
||
before_install: | ||
- docker pull cakephpfr/docs | ||
env: | ||
matrix: | ||
- HTML=1 | ||
- EPUB=1 | ||
- PDF=1 | ||
|
||
script: | ||
- docker run -it --rm -v $(pwd):/data cakephpfr/docs:light make html SPHINXOPTS='-W' | ||
- docker run -it --rm -v $(pwd):/data cakephpfr/docs make epub | ||
- docker run -it --rm -v $(pwd):/data cakephpfr/docs make latex | ||
- if [ $HTML = '1' ]; then make html; fi | ||
- if [ $EPUB = '1' ]; then make epub; fi | ||
- if [ $PDF = '1' ]; then make latex; fi | ||
|
||
notifications: | ||
email: false |
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
Oops, something went wrong.