We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8032ed9 + 8ba2bc9 commit dd75959Copy full SHA for dd75959
src/docker/install.ts
@@ -331,7 +331,7 @@ export class Install {
331
};
332
333
await core.group('Starting lima instance', async () => {
334
- const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=15m`];
+ const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=${process.env.LIMA_START_TIMEOUT ?? '15m'}`];
335
if (process.env.LIMA_START_ARGS) {
336
limaStartArgs.push(process.env.LIMA_START_ARGS);
337
}
0 commit comments