-
Notifications
You must be signed in to change notification settings - Fork 19
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 #8 from wallento/master
Render from file and generate images if needed
- Loading branch information
Showing
10 changed files
with
462 additions
and
208 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
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,28 +1,32 @@ | ||
language: python | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- latexmk | ||
- texlive-latex-recommended | ||
- texlive-fonts-recommended | ||
- texlive-latex-extra | ||
|
||
python: | ||
- '2.7' | ||
install: pip install -q -r requirements.txt | ||
script: cd example && make clean && make html && cd .. | ||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: always | ||
deploy: | ||
- provider: pypi | ||
distributions: sdist | ||
server: https://test.pypi.org/legacy/ | ||
user: bavo.van.achte | ||
password: | ||
secure: eTU2xAyjwVyYrpX8A4H64a6NNrDdVw4p45h0ZWzxD0Fb+4MQ6P/S6td/vn7tZGoBIbWVwzsOAaKNQLs+V2D03jtehxf12pkTw7I21B/hDgsp2DuTFM2GI/xOCcA7VoBEuEBZiMJiUGFbg7hoa/cHqHd3s97IowZ2+WaIzZoL28D0sSknyRTva63sG/oQfMWXCZ5SH4DthoFCsB3+jXhC4HKZbJzYOw2xeHHemkKmXo65a/whwsya++UuCqpo+/n+jWycjFun00sy2nE1CecQ4l0F4EpWPZgSR/a3mu4qVFW5YuZ9N1scorzZwryCREGwWRmNRRMtqNnfBcyrYvoDIRWcC1vkqv5511Qdu6ZlnHeh5FPNDMJefzzaOokpGlCLmTWcwjCprUyjXPW9xyHoHU/kdDiw5TUMmtkDvK/EgVoUNbNsCkmywbPaWzDimF3ghC0BbV2vfMCWUlBeO+C5/4HIRKJ5VKcTW9FfbuQe61tf1mN9af8j1VGXZSB6Y/aPSGQkrt0Aq+LbzMAn4Hf9z42/UGVS2/lHb7X0/p2dVEl3RG4mr8l/DtpZ5ilzF4EmFx2By+1eN24CYDshrc7momuZ+8JFUf/ECuMCi9Dv7L0UpwbQyYyoJmjyBAcCAXyZ2Db5sPuFuTm4mBeIbPe3RWmMApD8bdPq503K8g/siN4= | ||
on: | ||
branch: master | ||
tags: false | ||
- provider: pypi | ||
distributions: sdist | ||
user: bavo.van.achte | ||
password: | ||
secure: eTU2xAyjwVyYrpX8A4H64a6NNrDdVw4p45h0ZWzxD0Fb+4MQ6P/S6td/vn7tZGoBIbWVwzsOAaKNQLs+V2D03jtehxf12pkTw7I21B/hDgsp2DuTFM2GI/xOCcA7VoBEuEBZiMJiUGFbg7hoa/cHqHd3s97IowZ2+WaIzZoL28D0sSknyRTva63sG/oQfMWXCZ5SH4DthoFCsB3+jXhC4HKZbJzYOw2xeHHemkKmXo65a/whwsya++UuCqpo+/n+jWycjFun00sy2nE1CecQ4l0F4EpWPZgSR/a3mu4qVFW5YuZ9N1scorzZwryCREGwWRmNRRMtqNnfBcyrYvoDIRWcC1vkqv5511Qdu6ZlnHeh5FPNDMJefzzaOokpGlCLmTWcwjCprUyjXPW9xyHoHU/kdDiw5TUMmtkDvK/EgVoUNbNsCkmywbPaWzDimF3ghC0BbV2vfMCWUlBeO+C5/4HIRKJ5VKcTW9FfbuQe61tf1mN9af8j1VGXZSB6Y/aPSGQkrt0Aq+LbzMAn4Hf9z42/UGVS2/lHb7X0/p2dVEl3RG4mr8l/DtpZ5ilzF4EmFx2By+1eN24CYDshrc7momuZ+8JFUf/ECuMCi9Dv7L0UpwbQyYyoJmjyBAcCAXyZ2Db5sPuFuTm4mBeIbPe3RWmMApD8bdPq503K8g/siN4= | ||
on: | ||
branch: master | ||
tags: true | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
|
||
before_install: | ||
- cd example | ||
|
||
install: | ||
- pip install --upgrade pip | ||
- pip install .. | ||
- pip install sphinx_rtd_theme | ||
|
||
script: | ||
- make clean html | ||
- make clean singlehtml | ||
- make clean dirhtml | ||
- make clean html WAVEDROM_HTML_NOJSINLINE=1 | ||
- make clean singlehtml WAVEDROM_HTML_NOJSINLINE=1 | ||
- make clean dirhtml WAVEDROM_HTML_NOJSINLINE=1 | ||
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then make clean latexpdf; fi |
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
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
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
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,10 @@ | ||
{ "signal": [ | ||
{ "name": "A", "wave": "01..0..", "node": ".a..e.." }, | ||
{ "name": "B", "wave": "0.1..0.", "node": "..b..d.", "phase":0.5 }, | ||
{ "name": "C", "wave": "0..1..0", "node": "...c..f" }, | ||
{ "node": "...g..h" } | ||
], | ||
"edge": [ | ||
"b-|a t1", "a-|c t2", "b-|-c t3", "c-|->e t4", "e-|>f more text", | ||
"e|->d t6", "c-g", "f-h", "g<->h 3 ms" | ||
]} |
Oops, something went wrong.