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
Now register a runner to start picking up your CI/CD jobs.
110
+
Now [create and register](https://docs.gitlab.com/ee/ci/runners/runners_scope.html#create-a-project-runner-with-an-authentication-token) a project runner.
111
111
112
-
1. On the left sidebar, at the top, select **Search GitLab** (**{search}**) to find your project or group.
113
-
1. Select **Settings > CI/CD**.
114
-
1. Expand **Runners**.
115
-
1. Note the URL and registration token.
116
-
1. In a terminal, start the interactive setup:
112
+
When you create and register the runner:
117
113
118
-
```shell
119
-
gitlab-runner register
120
-
```
114
+
- In GitLab, add the tag `macos` to ensure macOS jobs run on this macOS machine.
115
+
- In the command-line, select `shell` as the [executor](../executors/index.md).
121
116
122
-
1. Enter the GitLab URL.
123
-
1. Enter the registration token.
124
-
1. Enter a description for the runner.
125
-
You will use the description to identify the runner in GitLab, and the name is associated with jobs executed on this instance.
126
-
127
-
1. Enter tags, which direct specific jobs to specific instances. You will use these tags later to ensure macOS jobs
128
-
run on this macOS machine. In this example, enter:
129
-
130
-
```shell
131
-
macos
132
-
```
133
-
134
-
1. Type `shell` to select the shell [executor](../executors/index.md).
135
-
136
-
A success message is displayed:
117
+
After you register the runner, a success message displays in the command-line:
137
118
138
119
```shell
139
120
> Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded!
140
121
```
141
122
142
-
To view the runner, go to **Settings > CI/CD** and expand **Runners**.
123
+
To view the runner:
124
+
125
+
1. On the left sidebar, at the top, select **Search GitLab** (**{search}**) to find your project.
0 commit comments