Skip to content

Commit dd75959

Browse files
authored
Merge pull request #839 from crazy-max/lima-timeout-env
docker(install): LIMA_START_TIMEOUT env var
2 parents 8032ed9 + 8ba2bc9 commit dd75959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docker/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export class Install {
331331
};
332332

333333
await core.group('Starting lima instance', async () => {
334-
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=15m`];
334+
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, `--timeout=${process.env.LIMA_START_TIMEOUT ?? '15m'}`];
335335
if (process.env.LIMA_START_ARGS) {
336336
limaStartArgs.push(process.env.LIMA_START_ARGS);
337337
}

0 commit comments

Comments
 (0)