From fad6c7201e22e48888cfb9f66aff85226c2f0958 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 23 Dec 2019 22:56:42 -0700 Subject: [PATCH] Remove old book location (#7621) --- RELEASE.md | 19 ------------- ci/publish-book.sh | 69 +--------------------------------------------- 2 files changed, 1 insertion(+), 87 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index e2c630c3ba..67d42ba95d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -140,25 +140,6 @@ TODO: Documentation update procedure is WIP as we move to gitbook Document the new recommended version by updating `book/src/running-archiver.md` and `book/src/validator-testnet.md` on the release (beta) branch to point at the `solana-install` for the upcoming release version. -#### Publish updated Book -We maintain three copies of the "book" as official documentation: - -1) "Book" is the documentation for the latest official release. This should get manually updated whenever a new release is made. It is published here: -https://solana-labs.github.io/book/ - -2) "Book-edge" tracks the tip of the master branch and updates automatically. -https://solana-labs.github.io/book-edge/ - -3) "Book-beta" tracks the tip of the beta branch and updates automatically. -https://solana-labs.github.io/book-beta/ - -To manually trigger an update of the "Book", create a new job of the manual-update-book pipeline. -Set the tag of the latest release as the PUBLISH_BOOK_TAG environment variable. -```bash -PUBLISH_BOOK_TAG=v0.16.6 -``` -https://buildkite.com/solana-labs/manual-update-book - ### Update software on testnet.solana.com The testnet running on testnet.solana.com is set to use a fixed release tag diff --git a/ci/publish-book.sh b/ci/publish-book.sh index 60a0593ec2..73028c8559 100755 --- a/ci/publish-book.sh +++ b/ci/publish-book.sh @@ -8,7 +8,6 @@ me=$(basename "$0") echo --- update gitbook-cage if [[ -n $CI_BRANCH ]]; then ( - set -x ( . ci/rust-version.sh stable @@ -25,74 +24,8 @@ if [[ -n $CI_BRANCH ]]; then git reset --hard HEAD~ fi ) -fi - - -source ci/rust-version.sh stable -eval "$(ci/channel-info.sh)" - -if [[ -n $PUBLISH_BOOK_TAG ]]; then - CURRENT_TAG="$(git describe --tags)" - COMMIT_TO_PUBLISH="$(git rev-list -n 1 "${PUBLISH_BOOK_TAG}")" - - # book is manually published at a specified release tag - if [[ $PUBLISH_BOOK_TAG != "$CURRENT_TAG" ]]; then - ( - cat <