Skip to content

Commit 834d96b

Browse files
Merge pull request circleci#1927 from circleci/incorporate-feedback-on-tutorial
Incorporate feedback on tutorial
2 parents 4baffd9 + 5d488c0 commit 834d96b

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

jekyll/_cci2/index.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ title: "2.0 Docs"
44
description: "Landing page for CircleCI 2.0"
55
permalink: /2.0/
66
---
7-
Welcome to CircleCI 2.0 documentation! This page describes how to run your first green build.
7+
Welcome to CircleCI 2.0 documentation! Included here are tutorials, samples, and reference documentation for CircleCI version 2.0 in the following two sections:
8+
9+
- **Developers:** Instructions for configuring a CircleCI YML file to automate your builds, tests, and deployments using the hosted CircleCI application.
10+
- **Server Administrators:** Instructions for installing and maintaining CircleCI on your local server or private cloud.
11+
12+
This page describes how to run your first green build.
813

914
<iframe width="560" height="315" src="https://www.youtube.com/embed/KhjwnTD4oec" frameborder="0" allowfullscreen></iframe>
1015

@@ -15,7 +20,7 @@ Welcome to CircleCI 2.0 documentation! This page describes how to run your first
1520

1621
## Creating a Repository
1722
1. Navigate to your account on GitHub.com
18-
* Go to the **Repositories** tab and then select **New** or navigate directly to <https://github.com/new>. ![]( {{ site.baseurl }}/assets/img/docs/GH_Repo-New-Banner.png)
23+
* Go to the **Repositories** tab and then select **New** or navigate directly to [https://github.com/new](https://github.com/new){:target="_blank"}. ![]( {{ site.baseurl }}/assets/img/docs/GH_Repo-New-Banner.png)
1924

2025
2. Select Initialize this repository with a README and click the Create repository button. ![]( {{ site.baseurl }}/assets/img/docs/create-repo-circle-101-initialise-readme.png)
2126

@@ -39,6 +44,8 @@ jobs:
3944
- run: echo "A first hello"
4045
```
4146
47+
3. Commit the file by entering comments and clicking the Commit New File button.
48+
4249
The `- image: circleci/ruby:2.4.1` text tells CircleCI what Docker image to use when it builds your project. CircleCI will use the image to boot up a "container" — a virtual computing environment where it will install any languages, system utilities, dependencies, web browsers, and tools, that your project might need to run.
4350

4451
## Setting up Your Build on CircleCI
@@ -53,7 +60,7 @@ The `- image: circleci/ruby:2.4.1` text tells CircleCI what Docker image to use
5360

5461
## Running Your First CircleCI Build!
5562

56-
You should see your build start to run automatically—and pass! So, what just happened? Click on the green button and let's investigate.
63+
You should see your build start to run automatically—and pass! So, what just happened? Click on the green Success button on the CircleCI dashboard to investigate the following parts of the run:
5764

5865
1. **Spin up environment:** CircleCI used the `circleci/ruby:2.4.1` Docker image to launch a virtual computing environment.
5966

@@ -65,7 +72,7 @@ Even though there was no actual source code in your repo, and no actual tests co
6572

6673
## Breaking Your Build!
6774

68-
Edit your `config.yml` file in the GitHub editor for simplicity and replace `echo "A first hello"` with `notacommand`. Click the **Commit change** button in the GitHub editor to trigger a new build and see what happens!
75+
Edit your `config.yml` file in the GitHub editor for simplicity and replace `echo "A first hello"` with `notacommand`. Click the **Commit change** button in the GitHub editor. When you navigate back to the Builds page in CircleCI, you will see that a new build was triggered. This build will fail with a red Failed button and will send you a notification email of the failure.
6976

7077

7178
## Using the Workflows Functionality

0 commit comments

Comments
 (0)