1
0
Files
build-push-action/src/context.ts
T

217 lines
7.6 KiB
TypeScript
Raw Normal View History

import * as core from '@actions/core';
2021-12-28 00:49:32 +01:00
import * as handlebars from 'handlebars';
2023-02-20 11:11:15 +01:00
import {Context} from '@docker/actions-toolkit/lib/context';
import {GitHub} from '@docker/actions-toolkit/lib/github';
import {Inputs as BuildxInputs} from '@docker/actions-toolkit/lib/buildx/inputs';
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit';
import {Util} from '@docker/actions-toolkit/lib/util';
2020-10-21 02:46:41 +02:00
export interface Inputs {
2022-01-31 11:47:45 +01:00
addHosts: string[];
2021-04-06 13:54:58 +02:00
allow: string[];
2023-01-11 12:12:09 +01:00
attests: string[];
2021-04-06 13:54:58 +02:00
buildArgs: string[];
2022-03-14 20:09:10 +01:00
buildContexts: string[];
2021-04-06 13:54:58 +02:00
builder: string;
cacheFrom: string[];
cacheTo: string[];
2021-11-16 07:19:27 +01:00
cgroupParent: string;
context: string;
file: string;
labels: string[];
2021-04-06 13:54:58 +02:00
load: boolean;
2021-04-06 14:49:15 +02:00
network: string;
noCache: boolean;
2022-07-18 17:24:11 +02:00
noCacheFilters: string[];
2021-04-06 13:54:58 +02:00
outputs: string[];
2020-08-17 02:32:27 +02:00
platforms: string[];
2023-01-11 12:12:09 +01:00
provenance: string;
2021-04-06 13:54:58 +02:00
pull: boolean;
push: boolean;
2023-01-11 12:12:09 +01:00
sbom: string;
2020-09-02 10:07:11 +02:00
secrets: string[];
2021-02-15 10:08:19 +01:00
secretFiles: string[];
2021-11-16 07:19:27 +01:00
shmSize: string;
2020-09-11 11:23:49 +12:00
ssh: string[];
2021-04-06 13:54:58 +02:00
tags: string[];
target: string;
2021-11-16 07:19:27 +01:00
ulimit: string[];
2021-04-06 13:54:58 +02:00
githubToken: string;
}
2023-04-17 01:32:21 +02:00
export async function getInputs(): Promise<Inputs> {
return {
2023-02-20 11:11:15 +01:00
addHosts: Util.getInputList('add-hosts'),
allow: Util.getInputList('allow'),
attests: Util.getInputList('attests', {ignoreComma: true}),
buildArgs: Util.getInputList('build-args', {ignoreComma: true}),
buildContexts: Util.getInputList('build-contexts', {ignoreComma: true}),
2021-04-06 13:54:58 +02:00
builder: core.getInput('builder'),
2023-02-20 11:11:15 +01:00
cacheFrom: Util.getInputList('cache-from', {ignoreComma: true}),
cacheTo: Util.getInputList('cache-to', {ignoreComma: true}),
2021-11-16 07:19:27 +01:00
cgroupParent: core.getInput('cgroup-parent'),
2023-02-20 11:11:15 +01:00
context: core.getInput('context') || Context.gitContext(),
file: core.getInput('file'),
2023-02-20 11:11:15 +01:00
labels: Util.getInputList('labels', {ignoreComma: true}),
2021-06-22 17:25:52 +02:00
load: core.getBooleanInput('load'),
2021-04-06 14:49:15 +02:00
network: core.getInput('network'),
2021-06-22 17:25:52 +02:00
noCache: core.getBooleanInput('no-cache'),
2023-02-20 11:11:15 +01:00
noCacheFilters: Util.getInputList('no-cache-filters'),
outputs: Util.getInputList('outputs', {ignoreComma: true}),
platforms: Util.getInputList('platforms'),
2023-04-17 01:32:21 +02:00
provenance: BuildxInputs.getProvenanceInput('provenance'),
2021-06-22 17:25:52 +02:00
pull: core.getBooleanInput('pull'),
push: core.getBooleanInput('push'),
2023-01-11 12:12:09 +01:00
sbom: core.getInput('sbom'),
2023-02-20 11:11:15 +01:00
secrets: Util.getInputList('secrets', {ignoreComma: true}),
secretFiles: Util.getInputList('secret-files', {ignoreComma: true}),
2021-11-16 07:19:27 +01:00
shmSize: core.getInput('shm-size'),
2023-02-20 11:11:15 +01:00
ssh: Util.getInputList('ssh'),
tags: Util.getInputList('tags'),
2021-04-06 13:54:58 +02:00
target: core.getInput('target'),
2023-02-20 11:11:15 +01:00
ulimit: Util.getInputList('ulimit', {ignoreComma: true}),
2021-04-06 13:54:58 +02:00
githubToken: core.getInput('github-token')
};
}
2023-02-20 11:11:15 +01:00
export async function getArgs(inputs: Inputs, toolkit: Toolkit): Promise<Array<string>> {
const context = handlebars.compile(inputs.context)({
defaultContext: Context.gitContext()
});
2022-03-15 21:59:52 +01:00
// prettier-ignore
return [
2023-02-20 11:11:15 +01:00
...await getBuildArgs(inputs, context, toolkit),
...await getCommonArgs(inputs, toolkit),
context
2022-03-15 21:59:52 +01:00
];
}
2023-02-20 11:11:15 +01:00
async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): Promise<Array<string>> {
2022-03-15 21:59:52 +01:00
const args: Array<string> = ['build'];
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.addHosts, async addHost => {
2022-01-31 11:47:45 +01:00
args.push('--add-host', addHost);
});
2021-11-16 05:19:44 +01:00
if (inputs.allow.length > 0) {
args.push('--allow', inputs.allow.join(','));
}
2023-02-20 11:11:15 +01:00
if (await toolkit.buildx.versionSatisfies('>=0.10.0')) {
await Util.asyncForEach(inputs.attests, async attest => {
2023-01-11 12:12:09 +01:00
args.push('--attest', attest);
});
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.buildArgs, async buildArg => {
args.push('--build-arg', buildArg);
});
2023-02-20 11:11:15 +01:00
if (await toolkit.buildx.versionSatisfies('>=0.8.0')) {
await Util.asyncForEach(inputs.buildContexts, async buildContext => {
2022-03-14 20:09:10 +01:00
args.push('--build-context', buildContext);
});
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.cacheFrom, async cacheFrom => {
2021-11-16 05:19:44 +01:00
args.push('--cache-from', cacheFrom);
});
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.cacheTo, async cacheTo => {
2021-11-16 05:19:44 +01:00
args.push('--cache-to', cacheTo);
});
2021-11-16 07:19:27 +01:00
if (inputs.cgroupParent) {
args.push('--cgroup-parent', inputs.cgroupParent);
}
2021-11-16 05:19:44 +01:00
if (inputs.file) {
args.push('--file', inputs.file);
2020-08-23 03:31:38 +02:00
}
2023-02-20 11:11:15 +01:00
if (!BuildxInputs.hasLocalExporter(inputs.outputs) && !BuildxInputs.hasTarExporter(inputs.outputs) && (inputs.platforms.length == 0 || (await toolkit.buildx.versionSatisfies('>=0.4.2')))) {
2023-04-17 01:32:21 +02:00
args.push('--iidfile', BuildxInputs.getBuildImageIDFilePath());
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.labels, async label => {
2021-11-16 05:19:44 +01:00
args.push('--label', label);
});
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.noCacheFilters, async noCacheFilter => {
2022-07-18 17:24:11 +02:00
args.push('--no-cache-filter', noCacheFilter);
});
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.outputs, async output => {
2021-11-16 05:19:44 +01:00
args.push('--output', output);
});
2021-11-16 05:19:44 +01:00
if (inputs.platforms.length > 0) {
args.push('--platform', inputs.platforms.join(','));
}
2023-02-20 11:11:15 +01:00
if (await toolkit.buildx.versionSatisfies('>=0.10.0')) {
2023-01-11 12:12:09 +01:00
if (inputs.provenance) {
2023-01-13 10:02:50 +01:00
args.push('--provenance', inputs.provenance);
2023-02-20 11:11:15 +01:00
} else if ((await toolkit.buildkit.versionSatisfies(inputs.builder, '>=0.11.0')) && !BuildxInputs.hasDockerExporter(inputs.outputs, inputs.load)) {
// if provenance not specified and BuildKit version compatible for
// attestation, set default provenance. Also needs to make sure user
// doesn't want to explicitly load the image to docker.
2023-02-20 11:11:15 +01:00
if (GitHub.context.payload.repository?.private ?? false) {
// if this is a private repository, we set the default provenance
// attributes being set in buildx: https://github.com/docker/buildx/blob/fb27e3f919dcbf614d7126b10c2bc2d0b1927eb6/build/build.go#L603
2023-04-17 01:32:21 +02:00
args.push('--provenance', BuildxInputs.resolveProvenanceAttrs(`mode=min,inline-only=true`));
} else {
// for a public repository, we set max provenance mode.
2023-04-17 01:32:21 +02:00
args.push('--provenance', BuildxInputs.resolveProvenanceAttrs(`mode=max`));
}
2023-01-11 12:12:09 +01:00
}
if (inputs.sbom) {
args.push('--sbom', inputs.sbom);
}
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.secrets, async secret => {
2020-11-17 21:38:45 +01:00
try {
2023-04-17 01:32:21 +02:00
args.push('--secret', BuildxInputs.resolveBuildSecretString(secret));
2021-02-15 10:08:19 +01:00
} catch (err) {
core.warning(err.message);
}
});
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.secretFiles, async secretFile => {
2021-02-15 10:08:19 +01:00
try {
2023-04-17 01:32:21 +02:00
args.push('--secret', BuildxInputs.resolveBuildSecretFile(secretFile));
2020-11-17 21:38:45 +01:00
} catch (err) {
core.warning(err.message);
}
2020-09-02 10:07:11 +02:00
});
2023-02-20 11:11:15 +01:00
if (inputs.githubToken && !BuildxInputs.hasGitAuthTokenSecret(inputs.secrets) && context.startsWith(Context.gitContext())) {
2023-04-17 01:32:21 +02:00
args.push('--secret', BuildxInputs.resolveBuildSecretString(`GIT_AUTH_TOKEN=${inputs.githubToken}`));
}
2021-11-16 07:19:27 +01:00
if (inputs.shmSize) {
args.push('--shm-size', inputs.shmSize);
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.ssh, async ssh => {
2020-09-11 11:23:49 +12:00
args.push('--ssh', ssh);
});
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.tags, async tag => {
2021-11-16 05:19:44 +01:00
args.push('--tag', tag);
});
if (inputs.target) {
args.push('--target', inputs.target);
}
2023-02-20 11:11:15 +01:00
await Util.asyncForEach(inputs.ulimit, async ulimit => {
2021-11-16 07:19:27 +01:00
args.push('--ulimit', ulimit);
});
return args;
}
2023-02-20 11:11:15 +01:00
async function getCommonArgs(inputs: Inputs, toolkit: Toolkit): Promise<Array<string>> {
2022-03-15 21:59:52 +01:00
const args: Array<string> = [];
2020-09-03 11:49:39 +02:00
if (inputs.builder) {
args.push('--builder', inputs.builder);
}
2020-08-17 22:18:15 +02:00
if (inputs.load) {
args.push('--load');
}
2023-02-20 11:11:15 +01:00
if (await toolkit.buildx.versionSatisfies('>=0.6.0')) {
2023-04-17 01:32:21 +02:00
args.push('--metadata-file', BuildxInputs.getBuildMetadataFilePath());
2021-11-16 05:19:44 +01:00
}
2021-04-06 14:49:15 +02:00
if (inputs.network) {
args.push('--network', inputs.network);
}
2021-11-16 05:19:44 +01:00
if (inputs.noCache) {
args.push('--no-cache');
}
if (inputs.pull) {
args.push('--pull');
}
2020-08-17 22:18:15 +02:00
if (inputs.push) {
args.push('--push');
}
return args;
}