2020-08-17 20:18:15 +00:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as path from 'path';
|
2020-08-23 01:31:38 +00:00
|
|
|
import * as semver from 'semver';
|
2020-08-17 20:18:15 +00:00
|
|
|
import * as buildx from './buildx';
|
2020-08-16 15:18:08 +00:00
|
|
|
import * as core from '@actions/core';
|
2020-09-02 08:07:11 +00:00
|
|
|
import * as github from '@actions/github';
|
2020-08-16 15:18:08 +00:00
|
|
|
|
2020-08-17 20:18:15 +00:00
|
|
|
export const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-build-push-'));
|
|
|
|
|
2020-08-16 15:18:08 +00:00
|
|
|
export interface Inputs {
|
|
|
|
context: string;
|
|
|
|
file: string;
|
|
|
|
buildArgs: string[];
|
|
|
|
labels: string[];
|
|
|
|
tags: string[];
|
|
|
|
pull: boolean;
|
|
|
|
target: string;
|
2020-08-17 00:32:27 +00:00
|
|
|
allow: string[];
|
2020-08-16 15:18:08 +00:00
|
|
|
noCache: boolean;
|
|
|
|
builder: string;
|
2020-08-17 00:32:27 +00:00
|
|
|
platforms: string[];
|
2020-08-16 15:18:08 +00:00
|
|
|
load: boolean;
|
|
|
|
push: boolean;
|
|
|
|
outputs: string[];
|
|
|
|
cacheFrom: string[];
|
|
|
|
cacheTo: string[];
|
2020-09-02 08:07:11 +00:00
|
|
|
secrets: string[];
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getInputs(): Promise<Inputs> {
|
|
|
|
return {
|
2020-09-02 08:07:11 +00:00
|
|
|
context:
|
|
|
|
core.getInput('context') ||
|
|
|
|
`https://github.com/${github.context.repo.owner}/${github.context.repo.repo}#${github.context.ref}`,
|
|
|
|
file: core.getInput('file') || 'Dockerfile',
|
2020-08-16 15:18:08 +00:00
|
|
|
buildArgs: await getInputList('build-args'),
|
|
|
|
labels: await getInputList('labels'),
|
|
|
|
tags: await getInputList('tags'),
|
|
|
|
pull: /true/i.test(core.getInput('pull')),
|
|
|
|
target: core.getInput('target'),
|
2020-08-17 00:32:27 +00:00
|
|
|
allow: await getInputList('allow'),
|
2020-08-16 15:18:08 +00:00
|
|
|
noCache: /true/i.test(core.getInput('no-cache')),
|
|
|
|
builder: core.getInput('builder'),
|
2020-08-17 00:32:27 +00:00
|
|
|
platforms: await getInputList('platforms'),
|
2020-08-16 15:18:08 +00:00
|
|
|
load: /true/i.test(core.getInput('load')),
|
|
|
|
push: /true/i.test(core.getInput('push')),
|
2020-08-29 15:15:26 +00:00
|
|
|
outputs: await getInputList('outputs', true),
|
|
|
|
cacheFrom: await getInputList('cache-from', true),
|
2020-09-02 08:07:11 +00:00
|
|
|
cacheTo: await getInputList('cache-to', true),
|
|
|
|
secrets: await getInputList('secrets', true)
|
2020-08-16 15:18:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-23 01:31:38 +00:00
|
|
|
export async function getArgs(inputs: Inputs, buildxVersion: string): Promise<Array<string>> {
|
2020-08-16 15:18:08 +00:00
|
|
|
let args: Array<string> = ['buildx'];
|
2020-08-23 01:31:38 +00:00
|
|
|
args.push.apply(args, await getBuildArgs(inputs, buildxVersion));
|
2020-08-16 15:24:31 +00:00
|
|
|
args.push.apply(args, await getCommonArgs(inputs));
|
2020-08-17 16:26:35 +00:00
|
|
|
args.push(inputs.context);
|
2020-08-16 15:18:08 +00:00
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
2020-08-23 01:31:38 +00:00
|
|
|
async function getBuildArgs(inputs: Inputs, buildxVersion: string): Promise<Array<string>> {
|
2020-08-16 15:18:08 +00:00
|
|
|
let args: Array<string> = ['build'];
|
|
|
|
await asyncForEach(inputs.buildArgs, async buildArg => {
|
|
|
|
args.push('--build-arg', buildArg);
|
|
|
|
});
|
|
|
|
await asyncForEach(inputs.labels, async label => {
|
|
|
|
args.push('--label', label);
|
|
|
|
});
|
|
|
|
await asyncForEach(inputs.tags, async tag => {
|
|
|
|
args.push('--tag', tag);
|
|
|
|
});
|
|
|
|
if (inputs.target) {
|
|
|
|
args.push('--target', inputs.target);
|
|
|
|
}
|
2020-08-17 20:18:15 +00:00
|
|
|
if (inputs.allow.length > 0) {
|
2020-08-17 00:32:27 +00:00
|
|
|
args.push('--allow', inputs.allow.join(','));
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
2020-08-17 20:18:15 +00:00
|
|
|
if (inputs.platforms.length > 0) {
|
2020-08-17 00:32:27 +00:00
|
|
|
args.push('--platform', inputs.platforms.join(','));
|
2020-08-23 01:31:38 +00:00
|
|
|
}
|
|
|
|
if (inputs.platforms.length == 0 || semver.satisfies(buildxVersion, '>=0.4.2')) {
|
2020-08-17 20:18:15 +00:00
|
|
|
args.push('--iidfile', await buildx.getImageIDFile());
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
|
|
|
await asyncForEach(inputs.outputs, async output => {
|
|
|
|
args.push('--output', output);
|
|
|
|
});
|
|
|
|
await asyncForEach(inputs.cacheFrom, async cacheFrom => {
|
|
|
|
args.push('--cache-from', cacheFrom);
|
|
|
|
});
|
|
|
|
await asyncForEach(inputs.cacheTo, async cacheTo => {
|
2020-08-16 20:43:08 +00:00
|
|
|
args.push('--cache-to', cacheTo);
|
2020-08-16 15:18:08 +00:00
|
|
|
});
|
2020-09-02 08:07:11 +00:00
|
|
|
await asyncForEach(inputs.secrets, async secret => {
|
|
|
|
args.push('--secret', await buildx.getSecret(secret));
|
|
|
|
});
|
2020-08-16 15:18:08 +00:00
|
|
|
if (inputs.file) {
|
|
|
|
args.push('--file', inputs.file);
|
|
|
|
}
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
2020-08-17 20:18:15 +00:00
|
|
|
async function getCommonArgs(inputs: Inputs): Promise<Array<string>> {
|
|
|
|
let args: Array<string> = [];
|
|
|
|
if (inputs.noCache) {
|
|
|
|
args.push('--no-cache');
|
|
|
|
}
|
2020-09-03 09:49:39 +00:00
|
|
|
if (inputs.builder) {
|
|
|
|
args.push('--builder', inputs.builder);
|
|
|
|
}
|
2020-08-17 20:18:15 +00:00
|
|
|
if (inputs.pull) {
|
|
|
|
args.push('--pull');
|
|
|
|
}
|
|
|
|
if (inputs.load) {
|
|
|
|
args.push('--load');
|
|
|
|
}
|
|
|
|
if (inputs.push) {
|
|
|
|
args.push('--push');
|
|
|
|
}
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
2020-08-29 15:15:26 +00:00
|
|
|
export async function getInputList(name: string, ignoreComma?: boolean): Promise<string[]> {
|
2020-08-16 15:18:08 +00:00
|
|
|
const items = core.getInput(name);
|
|
|
|
if (items == '') {
|
|
|
|
return [];
|
|
|
|
}
|
2020-08-29 15:15:26 +00:00
|
|
|
return items
|
|
|
|
.split(/\r?\n/)
|
2020-09-05 00:52:09 +00:00
|
|
|
.filter(x => x)
|
|
|
|
.reduce<string[]>(
|
|
|
|
(acc, line) => acc.concat(!ignoreComma ? line.split(',').filter(x => x) : line).map(pat => pat.trim()),
|
|
|
|
[]
|
|
|
|
);
|
2020-08-16 15:18:08 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 00:32:27 +00:00
|
|
|
export const asyncForEach = async (array, callback) => {
|
2020-08-16 15:18:08 +00:00
|
|
|
for (let index = 0; index < array.length; index++) {
|
|
|
|
await callback(array[index], index, array);
|
|
|
|
}
|
|
|
|
};
|