From 30ac3e07ba8b3ce9e6b8decfdb43f11fbc3258b5 Mon Sep 17 00:00:00 2001 From: Takuya N <10229505+tnir@users.noreply.github.com> Date: Fri, 25 Sep 2020 16:47:49 +0900 Subject: [PATCH] Remove CircleCI v1 docs as it was sunset in 2019 (#8410) Merge pull request 8410 --- docs/_docs/continuous-integration/circleci.md | 28 +------------------ 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/docs/_docs/continuous-integration/circleci.md b/docs/_docs/continuous-integration/circleci.md index e44c8465..a3c59b11 100644 --- a/docs/_docs/continuous-integration/circleci.md +++ b/docs/_docs/continuous-integration/circleci.md @@ -61,33 +61,7 @@ test: ## Complete Example circle.yml File -### CircleCI v1 - -When you put it all together, here's an example of what that `circle.yml` file could look like in v1: - -```yaml -machine: - environment: - NOKOGIRI_USE_SYSTEM_LIBRARIES: true # speeds up installation of html-proofer - -dependencies: - post: - - bundle exec jekyll build - -test: - post: - - bundle exec htmlproofer ./_site --allow-hash-href --check-favicon --check-html --disable-external - -deployment: - prod: - branch: master - commands: - - rsync -va --delete ./_site username@my-website:/var/html -``` - -### CircleCI v2 - -CircleCI v2 is a Docker-based system. The example `circle.yml` below demonstrates how to +Since v2, CircleCI is a Docker-based system. The example `circle.yml` below demonstrates how to deploy your Jekyll project to AWS. In order for this to work you would first have to set the `S3_BUCKET_NAME` [environment variable](https://circleci.com/docs/2.0/env-vars/).