2020-09-02 10:07:11 +02:00
|
|
|
import * as fs from 'fs';
|
2020-08-16 00:36:41 +02:00
|
|
|
import * as buildx from './buildx';
|
2020-09-02 10:07:11 +02:00
|
|
|
import * as context from './context';
|
|
|
|
import * as stateHelper from './state-helper';
|
2020-08-16 00:36:41 +02:00
|
|
|
import * as core from '@actions/core';
|
2021-06-22 19:52:21 +02:00
|
|
|
import * as exec from '@actions/exec';
|
2020-08-16 00:36:41 +02:00
|
|
|
|
|
|
|
async function run(): Promise<void> {
|
|
|
|
try {
|
2021-04-27 16:16:22 +02:00
|
|
|
core.startGroup(`Docker info`);
|
|
|
|
await exec.exec('docker', ['version']);
|
|
|
|
await exec.exec('docker', ['info']);
|
|
|
|
core.endGroup();
|
2020-08-16 00:36:41 +02:00
|
|
|
|
2020-08-16 05:53:50 +02:00
|
|
|
if (!(await buildx.isAvailable())) {
|
2021-04-27 16:16:22 +02:00
|
|
|
core.setFailed(`Docker buildx is required. See https://github.com/docker/setup-buildx-action to set up buildx.`);
|
|
|
|
return;
|
2020-08-16 00:36:41 +02:00
|
|
|
}
|
2020-10-19 21:17:06 +02:00
|
|
|
stateHelper.setTmpDir(context.tmpDir());
|
2020-08-16 00:36:41 +02:00
|
|
|
|
2020-08-23 03:31:38 +02:00
|
|
|
const buildxVersion = await buildx.getVersion();
|
2020-10-19 21:17:06 +02:00
|
|
|
const defContext = context.defaultContext();
|
2022-03-15 21:59:52 +01:00
|
|
|
const inputs: context.Inputs = await context.getInputs(defContext);
|
2020-08-16 22:31:37 +02:00
|
|
|
|
2020-10-19 21:17:06 +02:00
|
|
|
const args: string[] = await context.getArgs(inputs, defContext, buildxVersion);
|
2021-06-22 19:52:21 +02:00
|
|
|
await exec
|
|
|
|
.getExecOutput('docker', args, {
|
|
|
|
ignoreReturnCode: true
|
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
2022-03-15 21:59:52 +01:00
|
|
|
throw new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)?.[0]?.trim() ?? 'unknown error'}`);
|
2021-06-22 19:52:21 +02:00
|
|
|
}
|
|
|
|
});
|
2020-08-17 22:18:15 +02:00
|
|
|
|
2022-02-09 11:32:35 +01:00
|
|
|
const imageID = await buildx.getImageID();
|
2022-03-14 19:30:50 +01:00
|
|
|
const metadata = await buildx.getMetadata();
|
|
|
|
const digest = await buildx.getDigest(metadata);
|
|
|
|
|
2022-02-09 11:32:35 +01:00
|
|
|
if (imageID) {
|
2022-03-14 19:30:50 +01:00
|
|
|
await core.group(`ImageID`, async () => {
|
2022-02-09 11:32:35 +01:00
|
|
|
core.info(imageID);
|
2022-03-14 19:30:50 +01:00
|
|
|
context.setOutput('imageid', imageID);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (digest) {
|
|
|
|
await core.group(`Digest`, async () => {
|
|
|
|
core.info(digest);
|
|
|
|
context.setOutput('digest', digest);
|
2022-02-09 11:32:35 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
if (metadata) {
|
2022-03-14 19:30:50 +01:00
|
|
|
await core.group(`Metadata`, async () => {
|
2022-02-09 11:32:35 +01:00
|
|
|
core.info(metadata);
|
2021-08-16 23:44:13 +02:00
|
|
|
context.setOutput('metadata', metadata);
|
2022-02-09 11:32:35 +01:00
|
|
|
});
|
|
|
|
}
|
2020-08-16 00:36:41 +02:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 10:07:11 +02:00
|
|
|
async function cleanup(): Promise<void> {
|
|
|
|
if (stateHelper.tmpDir.length > 0) {
|
2021-04-27 16:16:22 +02:00
|
|
|
core.startGroup(`Removing temp folder ${stateHelper.tmpDir}`);
|
2020-09-02 10:07:11 +02:00
|
|
|
fs.rmdirSync(stateHelper.tmpDir, {recursive: true});
|
2021-04-27 16:16:22 +02:00
|
|
|
core.endGroup();
|
2020-09-02 10:07:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!stateHelper.IsPost) {
|
|
|
|
run();
|
|
|
|
} else {
|
|
|
|
cleanup();
|
|
|
|
}
|