-
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
Showing
1 changed file
with
14 additions
and
26 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,31 +1,19 @@ | ||
# The configurations you want to execute | ||
# That is, a combination of operating system and python version | ||
# Please add or remove for your needs. | ||
# Check all possible values for python in here: https://docs.travis-ci.com/user/languages/python/ | ||
# See how to further configure the matrix of combinations in here: https://docs.travis-ci.com/user/multi-os/ | ||
language: python | ||
sudo: require | ||
matrix: | ||
include: | ||
# - os: linux | ||
# python: 2.7 | ||
- os: linux | ||
python: 3.4 | ||
# - os: osx | ||
# language: generic | ||
# env: PYTHON=2.7 | ||
# - os: osx | ||
# language: generic | ||
# env: PYTHON=3.4.6 | ||
|
||
# Command to install dependencies for each configuration | ||
include: | ||
- os: linux | ||
python: 3.4 | ||
install: | ||
- . ./scripts/ensure_latex.sh | ||
- ./scripts/ensure_book_dependencies.sh | ||
|
||
- ". ./scripts/ensure_latex.sh" | ||
- "./scripts/ensure_book_dependencies.sh" | ||
script: | ||
- cd tex | ||
- pdflatex draft.tex | ||
|
||
# deploy: | ||
# - | ||
- cd tex | ||
- pdflatex draft.tex | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: aDz5kO0fZI/07xkaV6HRuZGSFBnq4Bo/O7junkcco4RB95SmI29KHVv3o8xt7Zw/XIDn3b+wGLBx8kfNr334z7at3oCXXgWPKPZdl/EzljkPIHGPRTQ8AN0LbU3B4htRRIfq09JXoW1QlDzKDf3P8t4YcpiVoJAZKkpdbmn7Mt+nPG8dhAOmwhxbc+o7LQkLDVge9UhJqkQmNbfZRCRcQHWc+2sswXUfEz37zzZMq05cdzC6tDWZnLsmrqbq1S8NKVA96/JrK3QUh0+1qjjpiiw0YunyLiyAoBgYZZ2StYUo3LyIEkvygltG4Ai3s0nKzGCSOX8IAg5//XhTUTcM9qoP62ASASKjgVLYkAA+rKIY4fRRALM8InXneunjPDdWbkGjQrg2hBGMPScAYWfw3xENKVzGgD+UdEiAVEd4TGNjO/kieUVGon/xJ4DAAj/naiSAxhk8huOUDUz9QgK6FWuKoACKQDxcbsrtIkr9vbFw3n2RsfFt9hFbWnfNmtAWVnVAg9ziVMVOdH/l3ZYXlOfihNFm/6tWrYHRtqwJ+oTYfClOuAAHeL/fUOkA9D3VpX38Ad4XMDOIYPpjz/JPHll7/5uIX9L+2mgTemUar4dG97sRyZxBiLmwLLjTHm9tC7SueuRbe/8I7Scm3mhxqBhZqr/A9gscqtuwzJth9CA= | ||
file: tex/draft.pdf | ||
on: | ||
repo: CRIStAL-Sigma/mock_tex_paper |