@@ -87,9 +87,10 @@ Let's create a CI/CD process for the code we just wrote. Our goal is to create a
stage: build
script:
- go build
- ./array
```
> Every GitLab CI/CD job on this instance runs in a Docker container. The `default` line defines the Docker image to use to run the jobs for this `.gitlab-ci.yml` file. Below this, we defined one stage, which is **build**. In this stage, there is a single job, which runs one script: `go build`. The result of this will be your Go application being compiled.
> Every GitLab CI/CD job on this instance runs in a Docker container. The `default` line defines the Docker image to use to run the jobs for this `.gitlab-ci.yml` file. Below this, we defined one stage, which is **build**. In this stage, there is a single job, which runs one script: `go build`. The result of this will be your Go application being compiled. `./array` will then run your compiled application.
1. Select **Commit changes**. Ensure that **Commit to the current `initial-code` branch** is selected.
@@ -7,7 +7,7 @@ description: "This Hands-On Guide walks you through the process of handling anal
## Objectives
The goal of this lab is to get an overview of the different analytics available to you in GitLab, and how to create your own Value Stream Analytics Board..
The goal of this lab is to get an overview of the different analytics available to you in GitLab, and how to create your own Value Stream Analytics Board.