diff --git a/.travis.yml b/.travis.yml index 54b08bde..2eadd7f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,19 @@ jobs: - stage: "Test iOS" rust: 1.25.0 script: ./scripts/test-ios.sh - - stage: "Docs" + - stage: deploy rust: 1.25.0 - script: ./scripts/cargo-doc.sh + script: ./scripts/build-doc.sh + deploy: + provider: pages + skip-cleanup: true + github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable + keep-history: true + local-dir: docs/apis/latest + target-branch: gh-pages-api-docs + verbose: true + on: + branch: master script: - cargo test --verbose --all - cargo test --features edn/serde_support --verbose --all diff --git a/scripts/build-doc.sh b/scripts/build-doc.sh new file mode 100755 index 00000000..acd7d851 --- /dev/null +++ b/scripts/build-doc.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# if [[ "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" ]]; then +cargo doc --all --no-deps --release && cp -r target/doc/* docs/apis/latest/rust +gem install jazzy +jazzy --source-directory sdks/swift/Mentat/ -o docs/apis/latest/swift +# fi