You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/cross-platform/gitlab-managed-runners/_index.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,10 @@ draft: true
5
5
cascade:
6
6
draft: true
7
7
8
+
8
9
minutes_to_complete: 40
9
10
10
-
who_is_this_for: This is an Introductory topic for DevOps professionals who are looking to build a CI/CD pipeline with GitLab on Google Axion using GitLab-Hosted runners.
11
+
who_is_this_for: This is an Introductory topic for DevOps professionals who are looking to build a CI/CD pipeline with GitLab on Google using GitLab-Hosted runners.
Copy file name to clipboardExpand all lines: content/learning-paths/cross-platform/gitlab-managed-runners/results.md
+19-9Lines changed: 19 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,12 +47,28 @@ Gitlab offers a lot of documentation on how to create pipeline that fits differe
47
47
## How to run your pipeline for testing and to check the results:
48
48
49
49
From the left hand side panel, Navigate to **`Build`** then to **`Pipeline`** then click on **`New pipeline`** button on the top right hand side just like the image below. In the new window click on **`New pipeline`** button again and your pipeline will start to execute.
To check the status of your pipeline and to check the output of any of it's Jobs simply click on any of the **`Jobs`** as the image below (with red rectangle around them).
You can also download the docker image that you saved in your gitlab registery and run it on an Arm64 instance/box for testing using the following bash script.
55
+
You can also check the **`$lscpu`** command output which will look similar to the image below:
56
+

57
+
58
+
As you can see this command outputs a list of helpful information that you can use to identify the CPU that the runner is using. This can be very helpful in understanding what is the speed and the limitations of the processor that the runner is using like the family of the processor, No. of Threads, Vendor ID, Flags activated or disabled, No. of cores and the different levels of Caches and their sizes among other things.
59
+
60
+
This information can also help you in planning which version of your application that you can run on that processor (This is an ARM CPU so you will need an Arm compatible version of your applications to run on your runner).
61
+
62
+
## How to test my Generated Docker image?
63
+
64
+
You can download the docker image that you saved in your gitlab registery by following the steps below:
65
+
66
+
- Go to your Project Tab/Link then
67
+
- Go to Deploy → Container Registry
68
+
- You should see new-docker
69
+
- With tags like latest and **`<commit-sha>`**
70
+
71
+
You will need to run it on an Arm64 instance/box for testing using the following bash script.
56
72
57
73
```bash
58
74
docker login registry.gitlab.com
@@ -66,12 +82,6 @@ If everything works correctly you should see an output like in the box below.
66
82
Hello from an Arm64 Docker image built on GitLab hosted Arm runners!
67
83
```
68
84
69
-
You can also check your Gitlab Registery by going to your project then:
0 commit comments