Commit fb4a33cf authored by Ian Ernst's avatar Ian Ernst
Browse files

Formatting fixes and minor lap updates

parent 13bd4156
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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.

@@ -173,6 +174,7 @@ build go:
  script:
    - ls
    - go build
    - ./array
```

**Executing your Scripts:**
+2 −2
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ Let’s add this to our CI/CD file.

    ```yaml
    include:
      - component: ilt.gitlabtraining.cloud/components/sast/sast@main
      - component: $CI_SERVER_FQDN/components/sast/sast@1.0.0
    ```

1. In the stages section of the file, add a stage named `test`, as shown below:
@@ -62,7 +62,7 @@ Let’s add this to our CI/CD file.
        image: golang

      include:
        - component: ilt.gitlabtraining.cloud/components/sast/sast@main
        - component: $CI_SERVER_FQDN/components/sast/sast@1.0.0

      stages:
        - build
+1 −1
Original line number Diff line number Diff line
@@ -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.

## Task A. Viewing your analytics