diff options
| author | Steven Fackler <[email protected]> | 2014-01-18 14:47:41 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-01-18 14:47:41 -0800 |
| commit | 7bae19741ece04be101268fc4a7e4874ef08fbb0 (patch) | |
| tree | 5d1520c44271feef27ed406007467c1a3ff52d55 | |
| parent | Shorten crate name (diff) | |
| download | rust-openssl-7bae19741ece04be101268fc4a7e4874ef08fbb0.tar.xz rust-openssl-7bae19741ece04be101268fc4a7e4874ef08fbb0.zip | |
Enable automatic doc upload
| -rw-r--r-- | .travis.yml | 7 | ||||
| -rw-r--r-- | Makefile | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index fae15328..8afe46de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +env: + global: + - secure: NUmm2nbBlVozEj4DGiXh7h4HCtCxDl90r6aQUIF+5bfuj0vMBxPVK6tygIZH2eyUQLferssHoAofidGPKAcb6KzWF+EgBqddaXkIS2gDWxHYV1motHn99gqKZVxy7LIxC35THfkXHNu91iJCNRlzZ9rDhogzpwBo6RTqtkdbzq0= before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - sudo apt-get update @@ -6,4 +9,6 @@ install: before_script: - openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem >/dev/null & script: - - make all test + - make all test doc +after_success: + - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh @@ -27,6 +27,9 @@ $(OPENSSL_TEST): $(OPENSSL_LIB) | $(BUILDDIR) clean: rm -rf $(BUILDDIR) +doc: $(OPENSSL) + rustdoc $(OPENSSL_LIB) + print-target: @echo $(OPENSSL) |