Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils_spec.js.snap « __snapshots__ « registration « components « runner « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eb7ffaacd620619343283158adfe4a39ee21d30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`registration utils for "linux" platform commandPrompt is correct 1`] = `"$"`;

exports[`registration utils for "linux" platform installScript is correct for "386" architecture 1`] = `
"# Download the binary for your system
sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-386

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# Create a GitLab Runner user
sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash

# Install and run as a service
sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
sudo gitlab-runner start"
`;

exports[`registration utils for "linux" platform installScript is correct for "amd64" architecture 1`] = `
"# Download the binary for your system
sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# Create a GitLab Runner user
sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash

# Install and run as a service
sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
sudo gitlab-runner start"
`;

exports[`registration utils for "linux" platform installScript is correct for "arm" architecture 1`] = `
"# Download the binary for your system
sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-arm

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# Create a GitLab Runner user
sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash

# Install and run as a service
sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
sudo gitlab-runner start"
`;

exports[`registration utils for "linux" platform installScript is correct for "arm64" architecture 1`] = `
"# Download the binary for your system
sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-arm64

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# Create a GitLab Runner user
sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash

# Install and run as a service
sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
sudo gitlab-runner start"
`;

exports[`registration utils for "linux" platform platformArchitectures returns correct list of architectures 1`] = `
Array [
  "amd64",
  "386",
  "arm",
  "arm64",
]
`;

exports[`registration utils for "linux" platform registerCommand is correct 1`] = `
Array [
  "gitlab-runner register",
  "  --url http://test.host",
  "  --token MOCK_AUTHENTICATION_TOKEN",
]
`;

exports[`registration utils for "linux" platform registerCommand is correct 2`] = `
Array [
  "gitlab-runner register",
  "  --url http://test.host",
]
`;

exports[`registration utils for "linux" platform runCommand is correct 1`] = `"gitlab-runner run"`;

exports[`registration utils for "osx" platform commandPrompt is correct 1`] = `"$"`;

exports[`registration utils for "osx" platform installScript is correct for "amd64" architecture 1`] = `
"# Download the binary for your system
sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# The rest of the commands execute as the user who will run the runner
# Register the runner (steps below), then run
cd ~
gitlab-runner install
gitlab-runner start"
`;

exports[`registration utils for "osx" platform installScript is correct for "arm64" architecture 1`] = `
"# Download the binary for your system
sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-arm64

# Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner

# The rest of the commands execute as the user who will run the runner
# Register the runner (steps below), then run
cd ~
gitlab-runner install
gitlab-runner start"
`;

exports[`registration utils for "osx" platform platformArchitectures returns correct list of architectures 1`] = `
Array [
  "amd64",
  "arm64",
]
`;

exports[`registration utils for "osx" platform registerCommand is correct 1`] = `
Array [
  "gitlab-runner register",
  "  --url http://test.host",
  "  --token MOCK_AUTHENTICATION_TOKEN",
]
`;

exports[`registration utils for "osx" platform registerCommand is correct 2`] = `
Array [
  "gitlab-runner register",
  "  --url http://test.host",
]
`;

exports[`registration utils for "osx" platform runCommand is correct 1`] = `"gitlab-runner run"`;

exports[`registration utils for "windows" platform commandPrompt is correct 1`] = `">"`;

exports[`registration utils for "windows" platform installScript is correct for "386" architecture 1`] = `
"# Run PowerShell: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7#with-administrative-privileges-run-as-administrator
# Create a folder somewhere on your system, for example: C:\\\\GitLab-Runner
New-Item -Path 'C:\\\\GitLab-Runner' -ItemType Directory

# Change to the folder
cd 'C:\\\\GitLab-Runner'

# Download binary
Invoke-WebRequest -Uri \\"https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-windows-386.exe\\" -OutFile \\"gitlab-runner.exe\\"

# Register the runner (steps below), then run
.\\\\gitlab-runner.exe install
.\\\\gitlab-runner.exe start"
`;

exports[`registration utils for "windows" platform installScript is correct for "amd64" architecture 1`] = `
"# Run PowerShell: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7#with-administrative-privileges-run-as-administrator
# Create a folder somewhere on your system, for example: C:\\\\GitLab-Runner
New-Item -Path 'C:\\\\GitLab-Runner' -ItemType Directory

# Change to the folder
cd 'C:\\\\GitLab-Runner'

# Download binary
Invoke-WebRequest -Uri \\"https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-windows-amd64.exe\\" -OutFile \\"gitlab-runner.exe\\"

# Register the runner (steps below), then run
.\\\\gitlab-runner.exe install
.\\\\gitlab-runner.exe start"
`;

exports[`registration utils for "windows" platform platformArchitectures returns correct list of architectures 1`] = `
Array [
  "amd64",
  "386",
]
`;

exports[`registration utils for "windows" platform registerCommand is correct 1`] = `
Array [
  ".\\\\gitlab-runner.exe register",
  "  --url http://test.host",
  "  --token MOCK_AUTHENTICATION_TOKEN",
]
`;

exports[`registration utils for "windows" platform registerCommand is correct 2`] = `
Array [
  ".\\\\gitlab-runner.exe register",
  "  --url http://test.host",
]
`;

exports[`registration utils for "windows" platform runCommand is correct 1`] = `".\\\\gitlab-runner.exe run"`;