Remove CircleCI v1 docs as it was sunset in 2019 (#8410)

Merge pull request 8410
This commit is contained in:
Takuya N 2020-09-25 16:47:49 +09:00 committed by GitHub
parent 0ee9331892
commit 30ac3e07ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 27 deletions

View File

@ -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/).