laneyard 0.5.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +280 -305
- package/dist/src/cli/adopt.js +254 -0
- package/dist/src/cli/remove.js +47 -25
- package/dist/src/cli/setup.js +30 -0
- package/dist/src/config/schema.js +10 -4
- package/dist/src/fastfile/adoption.js +170 -0
- package/dist/src/fastfile/splice.js +38 -0
- package/dist/src/main.js +28 -21
- package/dist/src/sidecar/bridge.js +5 -4
- package/dist/src/sidecar/prism-ruby.js +42 -0
- package/dist/src/sidecar/scan.js +45 -0
- package/dist/web/assets/{Editor-Bqz_dClT.js → Editor-CMa4-4N3.js} +1 -1
- package/dist/web/assets/{index-CMEreqtd.js → index-B8lAQPEM.js} +2 -2
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/ruby/scan.rb +207 -0
package/README.md
CHANGED
|
@@ -2,33 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
**A self-hosted web UI for fastlane.**
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
A browser interface for the fastlane lanes you already have, on hardware you own. Pick a lane, run
|
|
6
|
+
it, watch the output stream, download the artifact. Nobody else holds your signing keys, nobody
|
|
7
|
+
meters your minutes.
|
|
8
8
|
|
|
9
|
-
It
|
|
10
|
-
they are.
|
|
9
|
+
It drives fastlane, it doesn't replace it. Your lanes stay where they are.
|
|
11
10
|
|
|
12
11
|

|
|
13
12
|
|
|
14
13
|
## Why
|
|
15
14
|
|
|
16
|
-
**You keep the keys.**
|
|
17
|
-
|
|
18
|
-
is a third party holding all of it.
|
|
15
|
+
**You keep the keys.** Certificates, keystores, profiles, store credentials — everything needed to
|
|
16
|
+
publish under your name — stays on your machine. Hosted CI is a third party holding all of it.
|
|
19
17
|
|
|
20
|
-
**Minutes stop existing.** Hardware you
|
|
21
|
-
|
|
18
|
+
**Minutes stop existing.** Hardware you own costs less than a year of most CI plans and never bills
|
|
19
|
+
by the second. Long builds stop being a budget decision.
|
|
22
20
|
|
|
23
|
-
**It is just fastlane.** No new DSL, no YAML dialect,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
change here.
|
|
21
|
+
**It is just fastlane.** No new DSL, no YAML dialect, nothing to port. Laneyard reads your Fastfile
|
|
22
|
+
and asks *your* fastlane what it can do, plugins included — so upgrading fastlane needs no change
|
|
23
|
+
here.
|
|
27
24
|
|
|
28
|
-
The adaptation goes one way.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
The adaptation goes one way. Credentials reach your lanes under the variable names your Fastfile
|
|
26
|
+
already reads; where a file can't tell Laneyard something, it asks on a form instead of asking you to
|
|
27
|
+
change the file. Every edit it offers is optional — decline them all and the repository builds
|
|
28
|
+
exactly as before.
|
|
32
29
|
|
|
33
30
|
## Where it fits
|
|
34
31
|
|
|
@@ -41,9 +38,9 @@ change the file.
|
|
|
41
38
|
| build queue across a team | yes, serial | yes | yes |
|
|
42
39
|
| runs on pull requests | planned | yes | yes |
|
|
43
40
|
|
|
44
|
-
Laneyard's queue is serial: runs
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
Laneyard's queue is serial: runs drain one at a time across every project, in order. If your team
|
|
42
|
+
needs parallel builds across a fleet today, use something else — Laneyard is for one machine you
|
|
43
|
+
control.
|
|
47
44
|
|
|
48
45
|
## Requirements
|
|
49
46
|
|
|
@@ -67,11 +64,10 @@ laneyard setup # answer a few questions about this project
|
|
|
67
64
|
laneyard # start the server
|
|
68
65
|
```
|
|
69
66
|
|
|
70
|
-
`laneyard setup` inspects what is there — the `fastlane` directory even
|
|
67
|
+
`laneyard setup` inspects what is there — the `fastlane` directory (even nested in a monorepo), a
|
|
71
68
|
`Gemfile`, an Xcode project or a Gradle build — and writes the matching block into
|
|
72
|
-
`~/.laneyard/config.yml`. On a machine
|
|
73
|
-
|
|
74
|
-
again, and nothing stores it.
|
|
69
|
+
`~/.laneyard/config.yml`. On a machine with no account yet, it also creates the first admin: it asks
|
|
70
|
+
the name and prints a generated password once. Write it down — it is not shown again.
|
|
75
71
|
|
|
76
72
|
<details>
|
|
77
73
|
<summary>Running from source instead</summary>
|
|
@@ -90,6 +86,73 @@ asked your project's own fastlane for them.
|
|
|
90
86
|
|
|
91
87
|

|
|
92
88
|
|
|
89
|
+
### What setup does about a credential your Fastfile names outright
|
|
90
|
+
|
|
91
|
+
`laneyard setup` has a second act, after `Project "x" is set up` prints. The order is the guarantee:
|
|
92
|
+
everything below is offered to a project that already works, so declining it all costs nothing.
|
|
93
|
+
|
|
94
|
+
It looks for a credential named by a literal value:
|
|
95
|
+
|
|
96
|
+
```ruby
|
|
97
|
+
upload_to_play_store(json_key: "./play-service-account.json", track: "beta")
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
That line builds on the laptop it was written on and nowhere else. Laneyard builds from a clone of
|
|
101
|
+
your remote, so the JSON is either gitignored (absent from the clone — the run fails) or committed (a
|
|
102
|
+
service account key in your history). Neither is something a checklist can fix later.
|
|
103
|
+
|
|
104
|
+
So setup reads the Fastfile with Prism and offers — one at a time, refusably — to lift each
|
|
105
|
+
credential it recognises into the vault and replace the literal with `ENV.fetch(…)`. It reads the
|
|
106
|
+
syntax tree, not text, because `json_key:` also appears in comments and strings: a wrong patch to a
|
|
107
|
+
build file is the worst thing this feature could do.
|
|
108
|
+
|
|
109
|
+
Three kinds, by how sure the reading is:
|
|
110
|
+
|
|
111
|
+
- **a path to a credential file** — `key_filepath:` on `app_store_connect_api_key`, `json_key:` on
|
|
112
|
+
`supply`/`upload_to_play_store`/`validate_play_store_json_key` — offered only when the path
|
|
113
|
+
resolves to a file on disk. Defaults to yes. A `key_id:` or `issuer_id:` written beside an adopted
|
|
114
|
+
key is carried with it, rewritten to the variable the block exports and used to pre-fill its fields;
|
|
115
|
+
- **the credential's contents, inline** — `key_content:`, `json_key_data:`, a private key in
|
|
116
|
+
cleartext. Defaults to yes. The patch renames the keyword too — `key_content:` becomes
|
|
117
|
+
`key_filepath:`, `json_key_data:` becomes `json_key:` — because a stored block is exported as a
|
|
118
|
+
*path*, not text;
|
|
119
|
+
- **an argument that looks like a secret** — a literal ending in `token`, `password`, `secret`,
|
|
120
|
+
`api_key` or `url`. **Defaults to no**, value masked: it is the one kind where a false positive is
|
|
121
|
+
likely, and patching a non-secret by default is a silent regression.
|
|
122
|
+
|
|
123
|
+
The credential args of `app_store_connect_api_key` and Play — `key_id`, `issuer_id`, `key_filepath`,
|
|
124
|
+
`json_key` — are also normalised when they already read a variable: `issuer_id: ENV["ASC_ISSUER_ID"]`
|
|
125
|
+
becomes `ENV.fetch("APP_STORE_CONNECT_API_KEY_ISSUER_ID")`, the name a signing block exports. Store
|
|
126
|
+
the `.p8`/JSON once as a block and the old `ASC_*` secrets can go. A value already reading the right
|
|
127
|
+
name is left alone.
|
|
128
|
+
|
|
129
|
+
The vault is written before the Fastfile: if lifting fails, nothing has been patched to read a
|
|
130
|
+
missing variable. The patch is spliced by byte offset — everything outside the replaced range is
|
|
131
|
+
byte-identical — and the file is re-parsed before the command returns; if it no longer parses, the
|
|
132
|
+
previous content is restored.
|
|
133
|
+
|
|
134
|
+
```diff
|
|
135
|
+
- upload_to_play_store(json_key: "./play-service-account.json", track: "beta")
|
|
136
|
+
+ upload_to_play_store(json_key: ENV.fetch("SUPPLY_JSON_KEY"), track: "beta")
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
`ENV.fetch` rather than `ENV[]`: a missing variable fails at the top of the lane and names itself,
|
|
140
|
+
instead of reaching an action as `nil`.
|
|
141
|
+
|
|
142
|
+
**Setup does not commit or push.** It prints the `git diff` command and stops — the working copy is
|
|
143
|
+
yours. So **a patched Fastfile changes nothing until you push it**: Laneyard builds from the remote,
|
|
144
|
+
and until the commit is there, every run still reads the old path. It also does not take the
|
|
145
|
+
credential out of your history; where `git ls-files` finds the file, it says so — rotating the key is
|
|
146
|
+
the fix.
|
|
147
|
+
|
|
148
|
+
Two things it leaves alone: a value written as a heredoc (its reported location is the marker, not
|
|
149
|
+
the text, so patching would corrupt the file), and the Android keystore (configured in Gradle, not
|
|
150
|
+
the Fastfile — handled under Signing credentials below).
|
|
151
|
+
|
|
152
|
+
Declining writes nothing, anywhere. And where nothing can run Prism — a Mac whose only Ruby is the
|
|
153
|
+
system 2.6 — setup prints `Fastfile not analysed …` and finishes as always. The scan is a service,
|
|
154
|
+
never a gate.
|
|
155
|
+
|
|
93
156
|
## Configuration
|
|
94
157
|
|
|
95
158
|
All configuration lives in files. The database holds execution state only, so backing up
|
|
@@ -115,15 +178,14 @@ projects:
|
|
|
115
178
|
git_auth: { kind: ssh_key, ref: ~/.ssh/id_ed25519 }
|
|
116
179
|
```
|
|
117
180
|
|
|
118
|
-
`max_concurrent_runs` accepts `1`
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
server is never configured for builds that never happen.
|
|
181
|
+
`max_concurrent_runs` accepts `1` only. Runs drain from a single queue, one at a time across every
|
|
182
|
+
project — parallel runs would need a working directory per run, which does not exist yet. A larger
|
|
183
|
+
number is refused at load, so a server is never configured for builds that never happen.
|
|
122
184
|
|
|
123
185
|
### Accounts
|
|
124
186
|
|
|
125
|
-
Everyone who signs in has a name, a password and one of two roles
|
|
126
|
-
|
|
187
|
+
Everyone who signs in has a name, a password and one of two roles — two, because a third is easy to
|
|
188
|
+
add and impossible to remove.
|
|
127
189
|
|
|
128
190
|
| | **admin** | **builder** |
|
|
129
191
|
|---|---|---|
|
|
@@ -135,33 +197,29 @@ easy to add and impossible to remove.
|
|
|
135
197
|
| remove a project | ✓ | |
|
|
136
198
|
| manage accounts | ✓ | |
|
|
137
199
|
|
|
138
|
-
A builder is
|
|
139
|
-
|
|
200
|
+
A builder is who you give someone who ships without being trusted with the signing chain: they press
|
|
201
|
+
the button and watch, and never see a credential.
|
|
140
202
|
|
|
141
|
-
The interface shows a builder only what a builder can use —
|
|
142
|
-
tabs
|
|
143
|
-
|
|
144
|
-
proves it for every verb and every spelling of the address.
|
|
203
|
+
The interface shows a builder only what a builder can use — no secrets, fastfile, settings or
|
|
204
|
+
accounts tabs. That is courtesy, not security: the server refuses those routes on its own, whatever
|
|
205
|
+
the browser was shown, and the test suite proves it for every verb and every spelling of the address.
|
|
145
206
|
|
|
146
207
|
#### Which projects a builder reaches
|
|
147
208
|
|
|
148
|
-
An admin reaches every project
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
the very body a project that does not exist gives, so the two cannot be told apart. This is enforced
|
|
153
|
-
by the server, in one place, not hidden in the browser.
|
|
209
|
+
An admin reaches every project. A builder reaches only the projects it is granted, from the accounts
|
|
210
|
+
screen. A project a builder cannot reach is **invisible**, not shown-and-locked — absent from its
|
|
211
|
+
lists and a 404 by URL, answered with the body a nonexistent project gives, so the two cannot be told
|
|
212
|
+
apart. Enforced by the server, in one place, not the browser.
|
|
154
213
|
|
|
155
|
-
The reach is a `projects` list on the account in `config.yml`,
|
|
214
|
+
The reach is a `projects` list on the account in `config.yml`, with three states:
|
|
156
215
|
|
|
157
|
-
- **absent** — every project. A config written before this feature
|
|
158
|
-
|
|
159
|
-
- **`[]`** — no project.
|
|
160
|
-
starts seeing nothing until granted.
|
|
216
|
+
- **absent** — every project. A config written before this feature grants everyone, so nobody loses
|
|
217
|
+
access on an upgrade.
|
|
218
|
+
- **`[]`** — no project. What a new account starts with, so a new builder sees nothing until granted.
|
|
161
219
|
- **a list of slugs** — exactly those projects.
|
|
162
220
|
|
|
163
221
|
Removing a project strips its slug from every account, so a grant never points at a project that is
|
|
164
|
-
gone, and a
|
|
222
|
+
gone, and a re-created slug does not inherit an old grant.
|
|
165
223
|
|
|
166
224
|
Add and remove accounts from the accounts screen, or from the command line:
|
|
167
225
|
|
|
@@ -169,28 +227,24 @@ Add and remove accounts from the accounts screen, or from the command line:
|
|
|
169
227
|
echo "$PASSWORD" | laneyard user add lea --role builder
|
|
170
228
|
```
|
|
171
229
|
|
|
172
|
-
The password is read from standard input, never
|
|
173
|
-
|
|
230
|
+
The password is read from standard input, never an argument — an argument lands in your shell
|
|
231
|
+
history. Without `--role`, the account is a builder.
|
|
174
232
|
|
|
175
|
-
Two things are refused, in the API and
|
|
176
|
-
|
|
233
|
+
Two things are refused, in the API and CLI alike: removing or demoting the last admin. A server
|
|
234
|
+
nobody can administer cannot be repaired from the interface.
|
|
177
235
|
|
|
178
|
-
Anyone changes their own password
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
is a cookie in a browser that may have been left open on a desk. Doing it ends every other session
|
|
183
|
-
that account has, and leaves the page you did it on signed in. That is how the random password
|
|
184
|
-
`laneyard setup` printed once stops being a string on a sticky note.
|
|
236
|
+
Anyone changes their own password and name from **your account** — a builder included. Either asks
|
|
237
|
+
for the current password even though you are signed in: a session is a cookie in a browser that may
|
|
238
|
+
have been left open on a desk. Doing it ends every other session that account has. That is how the
|
|
239
|
+
password `laneyard setup` printed once stops being a string on a sticky note.
|
|
185
240
|
|
|
186
|
-
Changing your name edits your
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
no admin — the identifier is yours to change, whatever your role.
|
|
241
|
+
Changing your name edits your `config.yml` entry in place, keeping your role and access, and refuses
|
|
242
|
+
a name another account already has. The next time you sign in, you type the new one — self-service,
|
|
243
|
+
whatever your role.
|
|
190
244
|
|
|
191
|
-
Removing an account ends its sessions immediately — "remove the account" and "revoke access" are
|
|
192
|
-
|
|
193
|
-
|
|
245
|
+
Removing an account ends its sessions immediately — "remove the account" and "revoke access" are the
|
|
246
|
+
same act. So does editing `config.yml` by hand: every request looks the account up again, so a change
|
|
247
|
+
takes effect at once rather than at the next restart.
|
|
194
248
|
|
|
195
249
|
### `laneyard.yml` — in your repository, and committed
|
|
196
250
|
|
|
@@ -212,85 +266,44 @@ platforms: [ios] # or `[android]`, or both
|
|
|
212
266
|
asked for an App Store Connect key. Left out, Laneyard looks at the repository — an Xcode project
|
|
213
267
|
means iOS, a Gradle build means Android — and reports what it found rather than assuming.
|
|
214
268
|
|
|
215
|
-
It looks **beside the Fastfile**, not at the repository root, because that is where an app keeps
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
found, and a project configured with `ios/fastlane` reports iOS alone rather than being shown the
|
|
219
|
-
Android section on the strength of a sibling folder its lanes never touch. When that guess is
|
|
220
|
-
wrong, `platforms` is read first and settles it.
|
|
269
|
+
It looks **beside the Fastfile**, not at the repository root, because that is where an app keeps its
|
|
270
|
+
platform folders: `ios/` and `fastlane/` are siblings and move together when the app is one directory
|
|
271
|
+
of a monorepo. When that guess is wrong, `platforms` settles it.
|
|
221
272
|
|
|
222
273
|
Field by field, the repository file wins over the server block, which wins over the defaults. Any
|
|
223
|
-
field
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
**A monorepo
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
`
|
|
230
|
-
|
|
231
|
-
`fastlane_dir: fastlane` (usually left out entirely), so an app moved or duplicated keeps its file
|
|
232
|
-
unchanged. Laneyard finds the app from the project's `fastlane_dir` in `config.yml` and reads the
|
|
233
|
-
file from there; a `laneyard.yml` at the repository root still works and keeps its paths
|
|
234
|
-
repo-root-relative, exactly as before.
|
|
274
|
+
field may also go in the server block, so a repository you would rather not touch can be configured
|
|
275
|
+
entirely from `config.yml`.
|
|
276
|
+
|
|
277
|
+
**A monorepo carries one `laneyard.yml` per app**, in the app's own directory beside its fastlane
|
|
278
|
+
folder, so two apps on one remote each describe their own build. Inside an app-level file **paths are
|
|
279
|
+
relative to that file's directory** — `artifact_globs: ["**/*.aab"]`, a plain `fastlane_dir:
|
|
280
|
+
fastlane` usually left out — so an app moved or duplicated keeps its file unchanged. A `laneyard.yml`
|
|
281
|
+
at the repository root still works, with repo-root-relative paths.
|
|
235
282
|
|
|
236
283
|
Both files are watched: edit them by hand and Laneyard picks the change up. An invalid file is
|
|
237
284
|
reported and the last valid configuration stays live — a typo never takes the server down.
|
|
238
285
|
|
|
239
286
|
### Secrets
|
|
240
287
|
|
|
241
|
-
The variables your lanes read
|
|
242
|
-
|
|
243
|
-
vault
|
|
244
|
-
|
|
245
|
-
```bash
|
|
246
|
-
laneyard secret set MATCH_PASSWORD --project cartes-ios # reads the value from standard input
|
|
247
|
-
echo "$GITHUB_TOKEN" | laneyard secret set GITHUB_TOKEN # global, and out of your shell history
|
|
248
|
-
```
|
|
249
|
-
|
|
250
|
-
The value is never an argument: a command line ends up in `~/.zsh_history` and in the output of
|
|
251
|
-
`ps`. Typing the command alone leaves you at a blank line — type or paste the value, then
|
|
252
|
-
`Ctrl-D`.
|
|
253
|
-
|
|
254
|
-
**Reading one back.** The vault is write-only for anything you called a secret: the server never
|
|
255
|
-
sends a masked value back, so the interface has nothing to uncover and no browser ever holds one.
|
|
288
|
+
The variables your lanes read go into an encrypted vault, from a project's Secrets tab — global
|
|
289
|
+
secrets apply everywhere, a project's own win over them. The files it signs with go in the same
|
|
290
|
+
vault as blocks (below).
|
|
256
291
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
value you stored without that is shown on request, one named key at a time. `mask` and `unmask`
|
|
261
|
-
change which it is without touching the value — otherwise revealing something would mean first
|
|
262
|
-
retyping the value you were trying to read.
|
|
292
|
+
A secret is write-only: the server never sends a masked value back, so no browser ever holds one.
|
|
293
|
+
What you did not mark secret — `APP_VERSION`, an issuer id — is shown on request, one key at a time;
|
|
294
|
+
masking and unmasking switch which it is without retyping the value.
|
|
263
295
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
```bash
|
|
269
|
-
laneyard secret import --project cartes-ios # shows what it would store
|
|
270
|
-
laneyard secret import --project cartes-ios --yes # stores it
|
|
271
|
-
```
|
|
272
|
-
|
|
273
|
-
It runs from the CLI because that is where the `.env` is; the server only ever sees a clone. A
|
|
274
|
-
variable naming a service account JSON has the **file's contents** stored, under `SUPPLY_JSON_KEY_DATA`
|
|
275
|
-
— a name supply reads on its own — because a path does not travel to another machine. A variable
|
|
276
|
-
naming a `.p8` is reported and left alone: no action in fastlane reads a `.p8` out of an environment
|
|
277
|
-
variable, and that credential belongs in a signing block, described below. Everything stored is
|
|
278
|
-
masked, and nothing is printed but names.
|
|
279
|
-
|
|
280
|
-
Nothing in your lanes has to change afterwards. `key_filepath:` and `json_key:` keep working as
|
|
281
|
-
written — a signing block puts a real file back on disk for the length of a run.
|
|
282
|
-
|
|
283
|
-
A secret becomes an environment variable for every run of the project it belongs to. Without
|
|
284
|
-
`--project` it applies to every project; a project secret of the same name wins over a global
|
|
285
|
-
one. Secrets are kept out of the logs unless you pass `--no-mask`, and a masked value must be at
|
|
286
|
-
least four characters long — see below.
|
|
296
|
+
Nothing in your lanes has to change afterwards: `key_filepath:` and `json_key:` keep working — a
|
|
297
|
+
signing block puts a real file back on disk for the length of a run. A secret becomes an environment
|
|
298
|
+
variable for every run of its project, kept out of the logs; a masked value must be at least four
|
|
299
|
+
characters (see below).
|
|
287
300
|
|
|
288
301
|
### Signing credentials
|
|
289
302
|
|
|
290
|
-
A signing credential is not a string
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
303
|
+
A signing credential is not a string: an Android keystore is bytes Gradle reads through a path, and a
|
|
304
|
+
`.p8` is useless without its key id and issuer id. So these are stored as blocks — one file plus the
|
|
305
|
+
fields that make it usable, taken whole or refused. A keystore stored without its alias is not a
|
|
306
|
+
partial success; it is a build that fails in a month.
|
|
294
307
|
|
|
295
308
|
| block | the file | the fields beside it |
|
|
296
309
|
| ------------------------------ | ---------------------- | ------------------------------------------- |
|
|
@@ -298,69 +311,55 @@ stored without its alias is not a partial success; it is a build that fails in a
|
|
|
298
311
|
| *android upload keystore* | `.jks` or `.keystore` | key alias, store password, key password |
|
|
299
312
|
| *play store service account* | JSON | — |
|
|
300
313
|
|
|
301
|
-
They live in the **signing** part of a project's Secrets tab
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
in full.
|
|
314
|
+
They live in the **signing** part of a project's Secrets tab. The file is encrypted at rest and never
|
|
315
|
+
comes back out to a browser: a stored block shows its file name and nothing more, so replacing one
|
|
316
|
+
means giving it again in full.
|
|
305
317
|
|
|
306
318
|
A variable a block has made redundant is said to be so, beside the row and in one sentence:
|
|
307
319
|
`SUPPLY_JSON_KEY_DATA` once a Play block applies — it still works, but the same credential is then
|
|
308
320
|
stored twice — and `APP_STORE_CONNECT_API_KEY_P8`, which no action in fastlane has ever read.
|
|
309
321
|
Neither is removed for you: the row is yours, and the button to drop it is on the same line.
|
|
310
322
|
|
|
311
|
-
**A block becomes real files, for the length of a run.** Gradle's `storeFile`
|
|
312
|
-
`app_store_connect_api_key`
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
`
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
length of the run, out of the keystore block. Two things about that file cannot be read out of a
|
|
338
|
-
build script and are asked for on the block instead: where it goes, when the script names it in a
|
|
339
|
-
way that leaves the directory unresolved, and what the keys inside it are called, which start from
|
|
340
|
-
the Flutter documentation's four. Asking at configuration time is allowed; requiring a change to
|
|
341
|
-
your repository is not.
|
|
342
|
-
|
|
343
|
-
**Only the projects that sign need any of this.** fastlane is not only for shipping to stores —
|
|
344
|
-
lanes take screenshots, run tests, sync certificates — so the three blocks are an offer rather than
|
|
345
|
-
a gate. A project that wants an artifact out of a Gradle build needs the keystore and nothing else,
|
|
346
|
-
and three untouched circles are not three things it is failing.
|
|
323
|
+
**A block becomes real files, for the length of a run.** Gradle's `storeFile` and
|
|
324
|
+
`app_store_connect_api_key` both want a path, so a credential that exists only as ciphertext cannot
|
|
325
|
+
be used. Each block that applies is written into `~/.laneyard/runs/<run id>/secrets/`, mode `600` in
|
|
326
|
+
a `700` directory, removed when the run ends — passed, failed, cancelled or timed out. Every
|
|
327
|
+
applicable block is written whether or not the lane looks like it needs one: a Fastfile can reach
|
|
328
|
+
anything through `sh` or a plugin, and a wrong guess of "not needed" is a debug-signed artifact, not
|
|
329
|
+
a missing variable.
|
|
330
|
+
|
|
331
|
+
**It reaches your lanes under the names your project already reads.** Each form is pre-filled with
|
|
332
|
+
the names fastlane declares — `APP_STORE_CONNECT_API_KEY_KEY_FILEPATH`/`_KEY_ID`/`_ISSUER_ID`,
|
|
333
|
+
`SUPPLY_JSON_KEY` — and every one is editable. A Fastfile written around
|
|
334
|
+
`ENV.fetch("ASC_KEY_FILEPATH")` is not doing it wrong: you say so on the form instead of renaming
|
|
335
|
+
anything. The name stored is the only one exported — no default is emitted alongside, which would
|
|
336
|
+
make a typo look like it worked. The keystore's names are Laneyard's own (`ANDROID_KEYSTORE_PATH`,
|
|
337
|
+
`ANDROID_KEYSTORE_PASSWORD`, `ANDROID_KEY_ALIAS`, `ANDROID_KEY_PASSWORD`), same rule.
|
|
338
|
+
|
|
339
|
+
**The keystore block can also supply `key.properties`.** Flutter's own build script signs with the
|
|
340
|
+
release config when that file exists and the debug config when it does not, and gitignores it — so on
|
|
341
|
+
a build server it is always absent. Rather than telling you to rewrite the script, Laneyard writes
|
|
342
|
+
the file it looks for, for the length of the run, out of the keystore block. Two things it cannot
|
|
343
|
+
read from the script are asked for on the block: where the file goes, and what the keys inside are
|
|
344
|
+
called (starting from Flutter's four).
|
|
345
|
+
|
|
346
|
+
**Only the projects that sign need any of this.** fastlane also takes screenshots, runs tests, syncs
|
|
347
|
+
certificates — so the three blocks are an offer, not a gate. A project that just wants an artifact
|
|
348
|
+
out of Gradle needs the keystore and nothing else.
|
|
347
349
|
|
|
348
350
|
A block stored on a project belongs to that project. One stored globally applies to every project,
|
|
349
351
|
and a project's own block wins over it. Both are admin-only, like the rest of the vault.
|
|
350
352
|
|
|
351
353
|
### Readiness
|
|
352
354
|
|
|
353
|
-
Every project has a Readiness tab: what stands between it and a build that runs while nobody
|
|
354
|
-
|
|
355
|
-
for an App Store Connect key, because one irrelevant warning teaches you to ignore the screen.
|
|
355
|
+
Every project has a Readiness tab: what stands between it and a build that runs while nobody watches.
|
|
356
|
+
Only the checks that apply are shown — an Android project is never asked for an App Store Connect key.
|
|
356
357
|
|
|
357
|
-
**What a tick means.** The checks read your Fastfile, following a lane into the methods
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
*could not tell* rather than ticking. A green tick here means "looked, and it is fine" — never
|
|
363
|
-
"looked, and saw nothing".
|
|
358
|
+
**What a tick means.** The checks read your Fastfile, following a lane into the methods it defines.
|
|
359
|
+
Two things stay out of reach: `import`/`import_from_git` pulls in lanes from elsewhere, and
|
|
360
|
+
`fastlane/actions/` holds actions whose names mean nothing to a reader that has only seen the
|
|
361
|
+
Fastfile. Where either applies, a check that found nothing says *could not tell* rather than ticking.
|
|
362
|
+
A green tick means "looked, and it is fine" — never "looked, and saw nothing".
|
|
364
363
|
|
|
365
364
|
Always:
|
|
366
365
|
|
|
@@ -371,17 +370,14 @@ Always:
|
|
|
371
370
|
- **no lane calls an action known to stop and ask** — `prompt`, `sigh`, `cert`, a writable
|
|
372
371
|
`match`, an upload waiting for its summary to be confirmed;
|
|
373
372
|
- **the variables the lanes read** are in the vault. Every `ENV.fetch("…")` a lane reaches is
|
|
374
|
-
collected and looked up
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
and `required_secrets` in `laneyard.yml` covers whatever it does not. A variable found only in
|
|
383
|
-
the server's own environment is reported rather than ticked over: it works, but it works because
|
|
384
|
-
of how this server was started.
|
|
373
|
+
collected and looked up — the commonest way a project that works on your laptop fails on a server:
|
|
374
|
+
the variables live in a gitignored `fastlane/.env` that never reaches the clone.
|
|
375
|
+
|
|
376
|
+
Two things a Fastfile cannot tell you. A variable read by a tool the lane shells out to —
|
|
377
|
+
`sentry-cli` and `SENTRY_AUTH_TOKEN` — is named nowhere in the lanes; a committed
|
|
378
|
+
`fastlane/.env.example` is read for exactly this, and `required_secrets` in `laneyard.yml` covers
|
|
379
|
+
the rest. A variable found only in the server's own environment is reported, not ticked: it works,
|
|
380
|
+
but because of how the server was started.
|
|
385
381
|
|
|
386
382
|
A name a signing block exports counts as being in the vault, since that is where the block is:
|
|
387
383
|
a lane reading `SUPPLY_JSON_KEY` with a Play block stored is not asked for it again, on this
|
|
@@ -409,16 +405,14 @@ On Android:
|
|
|
409
405
|
passphrase, and one that is neither in the call nor in the vault makes gradle stop and ask. A
|
|
410
406
|
keystore block settles this before the lanes are read at all — the file and both passphrases
|
|
411
407
|
reach the run together, so nothing can stop and ask, whichever lane runs;
|
|
412
|
-
- **the release is signed with the release key.** The one check
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
it, marked `# written by laneyard, do not commit`, and is removed when fastlane stops. A file of
|
|
421
|
-
your own without that marker is never written over and never deleted;
|
|
408
|
+
- **the release is signed with the release key.** The one check whose failure is silent: Flutter's
|
|
409
|
+
own snippet signs with the release config when `key.properties` exists and the *debug* config when
|
|
410
|
+
it does not, and gitignores that file — so it is absent from every clone. The build then succeeds
|
|
411
|
+
with a debug-signed artifact, and the store rejects it minutes later saying nothing about signing.
|
|
412
|
+
This reads the Gradle file as text and says so before the build; and for a project whose keystore
|
|
413
|
+
is stored here, writes the `key.properties` the build asks for, for the length of the run — marked
|
|
414
|
+
`# written by laneyard, do not commit`, removed when fastlane stops. A file of your own without
|
|
415
|
+
that marker is never touched;
|
|
422
416
|
- **the Play Store service account** is there when a lane calls `upload_to_play_store`. The vault
|
|
423
417
|
first — a block, or a `SUPPLY_JSON_KEY` variable stored before blocks existed — then the
|
|
424
418
|
`json_key` argument in the call, then the **Appfile**: `json_key_file` and `json_key_data`, which
|
|
@@ -428,45 +422,38 @@ On Android:
|
|
|
428
422
|
Like the iOS ones, the Android checks read **literal arguments only**. `gradle(storePassword:
|
|
429
423
|
ENV["PW"])` is reported as undetermined, never guessed at: a checklist that guesses gets believed.
|
|
430
424
|
|
|
431
|
-
They run when you open the tab or press refresh, never on their own
|
|
432
|
-
bundler. The
|
|
433
|
-
cross.
|
|
425
|
+
They run when you open the tab or press refresh, never on their own — they shell out to git and
|
|
426
|
+
bundler. The last run's time is on screen, because a stale green tick is worse than a red cross.
|
|
434
427
|
|
|
435
|
-
Nothing here blocks anything. A red check is never
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
growing a second copy of its form.
|
|
428
|
+
Nothing here blocks anything. A red check is never why a run cannot start, and Laneyard never edits a
|
|
429
|
+
Fastfile to make its own checklist green — each line explains, you decide. Where the fix is one
|
|
430
|
+
action, the line links to the Secrets tab.
|
|
439
431
|
|
|
440
432
|
**What it cannot see.** The checklist reads *literal* arguments only. `match(readonly: true)` is
|
|
441
|
-
green
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
script rather than the Fastfile, since that is where it lives — and read as text, because running
|
|
446
|
-
someone's build script to ask it a question is not something a checklist may do.
|
|
433
|
+
green, `match(readonly: false)` a warning, but `match(readonly: ENV["RO"])` has no value until the
|
|
434
|
+
lane runs — reported as undetermined (`○`, with the reason) rather than guessed. A checklist that
|
|
435
|
+
guesses gets believed, and then it is worse than none. Android signing is read from the Gradle
|
|
436
|
+
script, as text — running someone's build script to ask it a question is not something it may do.
|
|
447
437
|
|
|
448
438
|
### The Fastfile
|
|
449
439
|
|
|
450
|
-
Every project has a Fastfile tab. **It is a text editor** — your file, in a box, with Ruby
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
require an SSH session.
|
|
440
|
+
Every project has a Fastfile tab. **It is a text editor** — your file, in a box, with Ruby syntax
|
|
441
|
+
highlighting and nothing between you and it. The structured view, where lanes and actions are things
|
|
442
|
+
you arrange rather than type, is still to come; this first half is useful on its own: fixing a lane
|
|
443
|
+
at 2am should not require an SSH session.
|
|
455
444
|
|
|
456
|
-
**Every write is verified.** Saving sends the file to the server, which writes it byte-for-byte
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
answers, and the reason fastlane gave appears above the editor with your work still in the box.
|
|
445
|
+
**Every write is verified.** Saving sends the file to the server, which writes it byte-for-byte then
|
|
446
|
+
asks fastlane to parse it and list its lanes. If that fails, the previous content is restored before
|
|
447
|
+
the request answers, and fastlane's reason appears above the editor with your work still in the box.
|
|
460
448
|
A broken Fastfile never reaches a workspace a run might build from.
|
|
461
449
|
|
|
462
|
-
Saving is explicit
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
in flight — that run is reading the very file the write would replace.
|
|
450
|
+
Saving is explicit: verification is a Ruby subprocess, not a regex, and running it on every keystroke
|
|
451
|
+
would be slow and dangerous. `⌘S` is another way to ask, not an autosave. Laneyard also refuses to
|
|
452
|
+
write while a run of that project is in flight — that run is reading the very file the write replaces.
|
|
466
453
|
|
|
467
|
-
Below the editor is what git makes of the workspace: the diff, a message field, `commit` and
|
|
468
|
-
|
|
469
|
-
|
|
454
|
+
Below the editor is what git makes of the workspace: the diff, a message field, `commit` and `push`.
|
|
455
|
+
A commit stages exactly the files that changed, never `git add -A` — a build scatters artifacts and
|
|
456
|
+
reports around, and none belong in your history.
|
|
470
457
|
|
|
471
458
|
### Removing a project
|
|
472
459
|
|
|
@@ -483,32 +470,33 @@ What it removes:
|
|
|
483
470
|
This is the one thing here nothing can rebuild, and the reason removal is behind a typed name;
|
|
484
471
|
- **the clone and the artifacts on disk**, deleted;
|
|
485
472
|
- **its secrets and its signing blocks in the vault** — Laneyard's own encrypted copies, forgotten.
|
|
486
|
-
The screen counts them before
|
|
487
|
-
|
|
473
|
+
The screen counts them before and after, because they are the one thing here you cannot go and look
|
|
474
|
+
at: no route ever sends a credential back.
|
|
488
475
|
|
|
489
|
-
What it does *not* touch
|
|
476
|
+
What it does *not* touch:
|
|
490
477
|
|
|
491
|
-
- **the git remote.** The repository is on your host and
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
- **global secrets and global signing blocks.** They are read by every project on the machine, not
|
|
497
|
-
this one's to take, and they are left alone. The result names how many it left.
|
|
478
|
+
- **the git remote.** The repository is on your host and disk; Laneyard neither reads nor writes it;
|
|
479
|
+
- **the credential originals.** The `.p8` and keystore you uploaded are wherever you keep them;
|
|
480
|
+
Laneyard removes only its own encrypted copy;
|
|
481
|
+
- **global secrets and global signing blocks.** Read by every project, not this one's to take. The
|
|
482
|
+
result names how many it left.
|
|
498
483
|
|
|
499
484
|
Removal is refused while a run of that project is in flight — that run is using the workspace. A
|
|
500
|
-
run
|
|
485
|
+
queued run will not start: it ends as failed, saying its project is gone.
|
|
501
486
|
|
|
502
|
-
The same thing from the command line
|
|
487
|
+
The same thing from the command line, run from the app's directory — the one holding its
|
|
488
|
+
`laneyard.yml`:
|
|
503
489
|
|
|
504
490
|
```bash
|
|
505
|
-
|
|
506
|
-
laneyard remove
|
|
491
|
+
cd apps/cartes-ios
|
|
492
|
+
laneyard remove --dry-run # show what would go, and stop
|
|
493
|
+
laneyard remove # remove it, after a typed confirmation
|
|
507
494
|
```
|
|
508
495
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
496
|
+
No slug to give: it reads one from the `laneyard.yml` there, refusing if the file is missing or has
|
|
497
|
+
no slug (run `laneyard setup` again). It deletes that file too, and says to commit the deletion.
|
|
498
|
+
Otherwise it matches the Settings tab: confirmed by typing the slug back, `--dry-run` stops at the
|
|
499
|
+
inventory, refused during a run.
|
|
512
500
|
|
|
513
501
|
### Resetting
|
|
514
502
|
|
|
@@ -517,17 +505,14 @@ laneyard reset --dry-run # show what would go, and stop
|
|
|
517
505
|
laneyard reset # wipe it, after a typed confirmation
|
|
518
506
|
```
|
|
519
507
|
|
|
520
|
-
`laneyard reset` wipes the data and keeps you able to use Laneyard: every project, the database,
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
open. The database comes back empty from the schema on the next start, which also clears the
|
|
525
|
-
sessions, so everyone signs in again.
|
|
508
|
+
`laneyard reset` wipes the data and keeps you able to use Laneyard: every project, the database, the
|
|
509
|
+
workspaces, the artifacts and the logs go; your accounts and the vault key stay. You sign in with the
|
|
510
|
+
same names afterwards, and keeping the key means an older `laneyard.db` backup stays readable. The
|
|
511
|
+
database comes back empty on the next start, which also clears sessions, so everyone signs in again.
|
|
526
512
|
|
|
527
|
-
It keeps the `server:` block of `config.yml` (accounts, port, bind, retention) and
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
folder's path, not `y`.
|
|
513
|
+
It keeps the `server:` block of `config.yml` (accounts, port, bind, retention) and `~/.laneyard/key`,
|
|
514
|
+
and never touches the git remotes or credential originals. It reads the inventory first and, like
|
|
515
|
+
`uninstall`, is confirmed by typing the folder's path, not `y`.
|
|
531
516
|
|
|
532
517
|
### Uninstalling
|
|
533
518
|
|
|
@@ -538,25 +523,18 @@ npm uninstall -g laneyard # remove the package itself
|
|
|
538
523
|
```
|
|
539
524
|
|
|
540
525
|
`laneyard uninstall` removes the data folder: `config.yml`, the vault key, the database, the
|
|
541
|
-
workspaces, the artifacts and the logs. It reads the whole inventory from disk first —
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
destroys credentials, and `$LANEYARD_HOME` is exactly the case where a reflex is wrong. Anything
|
|
554
|
-
in the folder that Laneyard did not put there is named, left alone, and the folder is kept for it.
|
|
555
|
-
|
|
556
|
-
It does not remove the npm package — a command cannot sensibly delete the binary it is running
|
|
557
|
-
from — and it prints the command that does. There is no npm lifecycle hook doing any of this on
|
|
558
|
-
`npm uninstall`, on purpose: a package manager must not delete someone's signing keys on its own,
|
|
559
|
-
and a lifecycle script cannot ask.
|
|
526
|
+
workspaces, the artifacts and the logs. It reads the whole inventory from disk first — projects,
|
|
527
|
+
secret and block counts, sizes and paths — and prints it before asking.
|
|
528
|
+
|
|
529
|
+
The vault key is the one loss that cannot be undone: every secret and block is encrypted under
|
|
530
|
+
`~/.laneyard/key`, and once it is gone the database is ciphertext nobody can read. The originals are
|
|
531
|
+
yours and untouched — the `.p8` in your downloads, the keystore in your safe — so what you agree to
|
|
532
|
+
is uploading them again. Global secrets and blocks go too; the inventory says so.
|
|
533
|
+
|
|
534
|
+
Confirmed by typing the folder's path, not `y`: this is the one command that destroys credentials.
|
|
535
|
+
Anything in the folder Laneyard did not put there is named, left alone, and the folder kept for it.
|
|
536
|
+
It does not remove the npm package — a command cannot delete the binary it runs from — and prints the
|
|
537
|
+
command that does, on purpose: a package manager must not delete someone's signing keys on its own.
|
|
560
538
|
|
|
561
539
|
## Security
|
|
562
540
|
|
|
@@ -572,22 +550,20 @@ Read this before putting Laneyard on a network.
|
|
|
572
550
|
- **A role is enforced by the server, not by the interface.** One table names the routes that
|
|
573
551
|
require an admin, and one hook is the only thing that reads it — there is no permission check
|
|
574
552
|
hidden inside a handler. What a builder is not shown is also what a builder is refused.
|
|
575
|
-
- **Secrets are encrypted at rest.** Values are stored with AES-256-GCM under a key
|
|
576
|
-
`~/.laneyard/key` — outside the database, mode `600`, and Laneyard refuses to start if anyone
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
- **A signing block is on disk only while a run needs it.**
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
- **Do not put secrets in `config.yml`.** It is a plain file with ordinary permissions. Use
|
|
590
|
-
`laneyard secret set` or the Secrets tab.
|
|
553
|
+
- **Secrets are encrypted at rest.** Values are stored with AES-256-GCM under a key in
|
|
554
|
+
`~/.laneyard/key` — outside the database, mode `600`, and Laneyard refuses to start if anyone else
|
|
555
|
+
can read it. Someone who walks off with `laneyard.db` gets ciphertext. Nothing else holds
|
|
556
|
+
plaintext: the store, API and interface deal in names only, and no route sends a value back — which
|
|
557
|
+
is why the Secrets tab has no reveal button.
|
|
558
|
+
- **A signing block is on disk only while a run needs it.** The file is written into
|
|
559
|
+
`~/.laneyard/runs/<run id>/secrets/`, mode `600` in a `700` directory, and that directory goes when
|
|
560
|
+
the run ends. The block's secret fields — the keystore passphrases — are stripped from output like
|
|
561
|
+
any masked secret, because gradle will echo one back on failure.
|
|
562
|
+
- **Masked values are removed from output before it is written, not when displayed.** The
|
|
563
|
+
substitution happens once, where a run's output fans out, so the log file, the live stream and the
|
|
564
|
+
stored error summary all hold `••••••`. It survives being split across two chunks of output.
|
|
565
|
+
- **Do not put secrets in `config.yml`.** It is a plain file with ordinary permissions. Use the
|
|
566
|
+
Secrets tab, which puts them in the encrypted vault instead.
|
|
591
567
|
|
|
592
568
|
What this does *not* cover, stated plainly:
|
|
593
569
|
|
|
@@ -602,11 +578,10 @@ What this does *not* cover, stated plainly:
|
|
|
602
578
|
- **Anything fastlane prints that is not a stored secret is stored in the clear**, under
|
|
603
579
|
`~/.laneyard/logs/`.
|
|
604
580
|
- **`key.properties` is written into the workspace, and it holds passwords.** It is the one
|
|
605
|
-
credential Laneyard puts in the clone rather than
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
removed.
|
|
581
|
+
credential Laneyard puts in the clone rather than the run's own directory, because Gradle resolves
|
|
582
|
+
that path relative to the build. Mode `600`, a marker as its first line, removed when the run ends
|
|
583
|
+
and swept for at the start of the next in case a server was killed mid-build. A file of yours
|
|
584
|
+
without that marker is never touched.
|
|
610
585
|
|
|
611
586
|
## Status
|
|
612
587
|
|
|
@@ -624,13 +599,13 @@ What this does *not* cover, stated plainly:
|
|
|
624
599
|
- `✓` remove a project from the interface — everything Laneyard holds for it, behind a typed name
|
|
625
600
|
- `✓` `laneyard uninstall`: the whole inventory first, then a typed confirmation, then the folder
|
|
626
601
|
- `✓` named accounts, with a builder role that never sees a credential
|
|
602
|
+
- `✓` setup names the credentials a Fastfile hardcodes, and offers — refusably — to lift them into
|
|
603
|
+
the vault and patch the file
|
|
627
604
|
- `○` git-triggered and scheduled builds
|
|
628
605
|
|
|
629
|
-
Two things worth knowing
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
run survives a restart of the server — it is still queued when it comes back up, and starts on
|
|
633
|
-
its own.
|
|
606
|
+
Two things worth knowing: listing lanes does not fetch the repository, so a lane you just pushed
|
|
607
|
+
appears after the next run; and runs execute one at a time across all projects. A queued run survives
|
|
608
|
+
a server restart and starts on its own.
|
|
634
609
|
|
|
635
610
|
## Changelog
|
|
636
611
|
|