summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2020-10-01 17:53:18 -0500
committerGitHub <noreply@github.com>2020-10-01 15:53:18 -0700
commite7986285bfd6582f3ac5b1df97abaa307717b07f (patch)
tree5bd75ed8442ede4e05016c45c3e0d3f7b8a9c8fd /.circleci
parent359aa427a5efef54fcdc4537578fbc7eb58f0bc6 (diff)
downloadnetworkx-e7986285bfd6582f3ac5b1df97abaa307717b07f.tar.gz
Revert "CI: Configure circleCI to deploy docs. (#4134)" (#4231)
This reverts commit 9775f834f527b68c367c9bb2ad44804acf8a283d and subsequent related commits 359aa427a, b3364edc6, and 5360f5237; all of which were related to the doc deployment config.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index e76a5449..53781693 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -51,47 +51,3 @@ jobs:
- store_artifacts:
path: doc/build/html
-
- - persist_to_workspace:
- root: doc/build
- paths:
- - html
-
- deploy:
- working_directory: ~/repo
- docker:
- - image: circleci/python:3.8.3-buster
-
- steps:
- - attach_workspace:
- at: /tmp/build
-
- - add_ssh_keys:
- fingerprints:
- - "1b:00:c0:c1:a9:6b:85:81:cb:99:52:1b:75:43:eb:fb"
-
- - run:
- name: upload_devdocs
- command: |
- set -e
- git clone git@github.com:networkx/documentation.git
- cd documentation
- rm -rf latest
- cp -R /tmp/build/html latest
- git config --global user.email "networkx-circleci-bot@nomail"
- git config --global user.name "networkx-circleci-bot"
- git config --global push.default simple;
- git commit -am "Docs built from $CIRCLE_SHA1"
- git push origin gh-pages
-
-workflows:
- version: 2
- default:
- jobs:
- - build
- - deploy:
- requires:
- - build
- filters:
- branches:
- only: master