@@ -65,6 +65,16 @@ If your distribution does not support this, you can run these commands:
65
65
``` bash
66
66
curl -s " https://gitlab-ci-local-ppa.firecow.dk/pubkey.gpg" | sudo apt-key add -
67
67
echo " deb https://gitlab-ci-local-ppa.firecow.dk ./" | sudo tee /etc/apt/sources.list.d/gitlab-ci-local.list
68
+
69
+ # OR
70
+
71
+ # MUST be `.asc` at least for older apts (e.g. Ubuntu Focal), since the key is ASCII-armored
72
+ PPA_KEY_PATH=/etc/apt/sources.list.d/gitlab-ci-local-ppa.asc
73
+ curl -s " https://gitlab-ci-local-ppa.firecow.dk/pubkey.gpg" | sudo tee " ${PPA_KEY_PATH} "
74
+ echo " deb [ signed-by=${PPA_KEY_PATH} ] https://gitlab-ci-local-ppa.firecow.dk ./" | sudo tee /etc/apt/sources.list.d/gitlab-ci-local.list
75
+
76
+ # and then
77
+
68
78
sudo apt-get update
69
79
sudo apt-get install gitlab-ci-local
70
80
```
@@ -133,7 +143,7 @@ echo "alias gcl='gitlab-ci-local'" >> ~/.bashrc
133
143
### Tab completion
134
144
135
145
``` bash
136
- gitlab-ci-local --completion >> ~ /.bashrc
146
+ gitlab-ci-local --completion >> ~ /.bashrc
137
147
```
138
148
139
149
### Logging options
@@ -156,7 +166,7 @@ to `when: never`.
156
166
157
167
``` text
158
168
name description stage when allow_failure needs
159
- test-job Run Tests test on_success false
169
+ test-job Run Tests test on_success false
160
170
build-job build on_success true [test-job]
161
171
```
162
172
@@ -166,7 +176,7 @@ Same as `--list` but will also print out jobs which are set to `when: never` (di
166
176
167
177
``` text
168
178
name description stage when allow_failure needs
169
- test-job Run Tests test on_success false
179
+ test-job Run Tests test on_success false
170
180
build-job build on_success true [test-job]
171
181
deploy-job deploy never false [build-job]
172
182
```
@@ -219,7 +229,7 @@ local-only-job:
219
229
local-only-subsection :
220
230
script :
221
231
- if [ $GITLAB_CI == 'false' ]; then eslint . --fix; fi
222
- - eslint .
232
+ - eslint .
223
233
` ` `
224
234
225
235
### Home file variables
0 commit comments