We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b74977 commit bff9f95Copy full SHA for bff9f95
2 files changed
.travis.yml
@@ -1,3 +1,6 @@
1
+env:
2
+ global:
3
+ - secure: MDV8QzYhRm55CkEBbpjzqWmw9fLIwDRjf0O/xBC2nBJmpGWhe6v+IumH9SJFVdtSA8j8FZR0qqdCHZOs0Zl5O0SpGWyC3kKHrdW6oeQATKyRGC0HNh3BOGWnkidexvnpv/auDFWA6Vgiorvxq9B162BkEDijh6Eyz0kshsUjgTU=
4
addons:
5
postgresql: 9.3
6
before_install:
@@ -10,3 +13,6 @@ before_script:
10
13
script:
11
14
- make
12
15
- make check
16
+ - make doc
17
+after_script:
18
+ - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
Makefile
@@ -43,4 +43,8 @@ check: $(POSTGRES_TEST)
43
clean:
44
rm -rf $(BUILDDIR)
45
46
+doc: $(OPENSSL) $(PHF)
47
+ rustdoc -L $(dir $(OPENSSL)) $(foreach file,$(PHF),-L $(dir $(file))) \
48
+ $(POSTGRES_LIB)
49
+
50
.PHONY: all check clean
0 commit comments