chore: add Travis CI docs deployment job and update build dependencies

- Add automatic docs deployment stage for master branch pushes in .travis.yml
- Include python3-markdown, python3-pygments, python3-setuptools, and ruby-sass as build dependencies
- Switch from container-based to sudo-required builds with trusty dist for custom Pygments lexer installation
- Ensure build directory exists before generating docs in Makefile
This commit is contained in:
Bob Nystrom
2018-07-16 04:01:14 +00:00
43 changed files with 502 additions and 217 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ endif
ifneq (,$(findstring darwin,$(OS)))
SHARED_EXT := dylib
else
SHARED_LIB_FLAGS := -Wl,-soname,$@.so
SHARED_LIB_FLAGS := -Wl,-soname,libwren.so
SHARED_EXT := so
# Link in the right libraries needed by libuv on Windows and Linux.