From c047587fd788fd1f2f967bcfa151832a998112cb Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 20 Oct 2019 09:59:03 +0100 Subject: [PATCH] disable gh-pages deploy in travis config It's not currently working and I don't think anyone uses the GH pages version of the docs. --- .travis.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8a13c4bae..2a0ab75f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,17 +8,17 @@ matrix: - rust: beta - rust: nightly - - name: "master doc to gh-pages" - rust: nightly - script: - - cargo doc --no-deps - - cargo doc --no-deps --manifest-path libssh2-sys/Cargo.toml - deploy: - provider: script - script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out) - skip_cleanup: true - on: - branch: master +# - name: "master doc to gh-pages" +# rust: nightly +# script: +# - cargo doc --no-deps +# - cargo doc --no-deps --manifest-path libssh2-sys/Cargo.toml +# deploy: +# provider: script +# script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out) +# skip_cleanup: true +# on: +# branch: master script: - cargo build