Merge pull request #493 from crazy-max/qemu-check-installed

docker(install): check qemu is installed
This commit is contained in:
CrazyMax 2024-11-18 15:45:47 +01:00 committed by GitHub
commit d19019dc11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -279,9 +279,14 @@ export class Install {
core.info(limaCfg); core.info(limaCfg);
}); });
const qemuArch = await Install.qemuArch(); if (!(await Install.qemuInstalled())) {
await core.group('Installing QEMU', async () => {
await Exec.exec('brew', ['install', 'qemu'], {env: envs});
});
}
const qemuBin = await Install.qemuBin();
await core.group('QEMU version', async () => { await core.group('QEMU version', async () => {
await Exec.exec(`qemu-system-${qemuArch} --version`); await Exec.exec(qemuBin, ['--version']);
}); });
// lima might already be started on the runner so env var added in download // lima might already be started on the runner so env var added in download
@ -617,29 +622,42 @@ EOF`,
return await io return await io
.which('lima', true) .which('lima', true)
.then(res => { .then(res => {
core.debug(`docker.Install.limaAvailable ok: ${res}`); core.debug(`docker.Install.limaInstalled ok: ${res}`);
return true; return true;
}) })
.catch(error => { .catch(error => {
core.debug(`docker.Install.limaAvailable error: ${error}`); core.debug(`docker.Install.limaInstalled error: ${error}`);
return false; return false;
}); });
} }
private static async qemuArch(): Promise<string> { private static async qemuBin(): Promise<string> {
switch (os.arch()) { switch (os.arch()) {
case 'x64': { case 'x64': {
return 'x86_64'; return `qemu-system-x86_64`;
} }
case 'arm64': { case 'arm64': {
return 'aarch64'; return `qemu-system-aarch64`;
} }
default: { default: {
return os.arch(); return `qemu-system-${os.arch()}`;
} }
} }
} }
private static async qemuInstalled(): Promise<boolean> {
return await io
.which(await Install.qemuBin(), true)
.then(res => {
core.debug(`docker.Install.qemuInstalled ok: ${res}`);
return true;
})
.catch(error => {
core.debug(`docker.Install.qemuInstalled error: ${error}`);
return false;
});
}
public static async getRelease(version: string): Promise<GitHubRelease> { public static async getRelease(version: string): Promise<GitHubRelease> {
const url = `https://raw.githubusercontent.com/docker/actions-toolkit/main/.github/docker-releases.json`; const url = `https://raw.githubusercontent.com/docker/actions-toolkit/main/.github/docker-releases.json`;
const http: httpm.HttpClient = new httpm.HttpClient('docker-actions-toolkit'); const http: httpm.HttpClient = new httpm.HttpClient('docker-actions-toolkit');