b96879e2db
Azure apparently downloads the source via http, so when we go to push the ssh keychain is not used. adding origin shoudl fix it, as was done in https://cloudblogs.microsoft.com/opensource/2019/04/05/publishing-github-pages-from-azure-pipelines/ |
||
---|---|---|
.. | ||
content | ||
tests | ||
.gitignore | ||
book.toml | ||
ci-build.sh | ||
README.md | ||
yarn.lock |
Juniper Book
Book containing the Juniper documentation.
Contributing
Requirements
The book is built with mdBook.
You can install it with:
cargo install mdbook
Starting a local test server
To launch a local test server that continually re-builds the book and autoreloads the page, run:
mdbook serve
Building the book
You can build the book to rendered HTML with this command:
mdbook build
The output will be in the ./_rendered
directory.
Running the tests
To run the tests validating all code examples in the book, run:
cd ./tests
cargo test
Test setup
All Rust code examples in the book are compiled on the CI.
This is done using the skeptic library.