2020-09-03 14:23:15 +00:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as core from '@actions/core';
|
2021-04-23 16:14:38 +00:00
|
|
|
import {issueCommand} from '@actions/core/lib/command';
|
2020-09-03 14:23:15 +00:00
|
|
|
|
|
|
|
export const osPlat: string = os.platform();
|
2020-09-05 14:30:41 +00:00
|
|
|
export const osArch: string = os.arch();
|
2020-09-03 14:23:15 +00:00
|
|
|
|
|
|
|
export interface Inputs {
|
|
|
|
version: string;
|
|
|
|
driver: string;
|
|
|
|
driverOpts: string[];
|
|
|
|
buildkitdFlags: string;
|
|
|
|
install: boolean;
|
|
|
|
use: boolean;
|
2020-09-08 13:52:09 +00:00
|
|
|
endpoint: string;
|
2021-04-21 17:37:54 +00:00
|
|
|
config: string;
|
2020-09-03 14:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getInputs(): Promise<Inputs> {
|
|
|
|
return {
|
|
|
|
version: core.getInput('version'),
|
|
|
|
driver: core.getInput('driver') || 'docker-container',
|
|
|
|
driverOpts: await getInputList('driver-opts', true),
|
2020-09-03 18:38:04 +00:00
|
|
|
buildkitdFlags:
|
|
|
|
core.getInput('buildkitd-flags') ||
|
|
|
|
'--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host',
|
2021-06-23 13:43:25 +00:00
|
|
|
install: core.getBooleanInput('install'),
|
|
|
|
use: core.getBooleanInput('use'),
|
2021-04-21 17:37:54 +00:00
|
|
|
endpoint: core.getInput('endpoint'),
|
|
|
|
config: core.getInput('config')
|
2020-09-03 14:23:15 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getInputList(name: string, ignoreComma?: boolean): Promise<string[]> {
|
|
|
|
const items = core.getInput(name);
|
|
|
|
if (items == '') {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
return items
|
|
|
|
.split(/\r?\n/)
|
2020-09-12 21:34:53 +00:00
|
|
|
.filter(x => x)
|
|
|
|
.reduce<string[]>(
|
|
|
|
(acc, line) => acc.concat(!ignoreComma ? line.split(',').filter(x => x) : line).map(pat => pat.trim()),
|
|
|
|
[]
|
|
|
|
);
|
2020-09-03 14:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const asyncForEach = async (array, callback) => {
|
|
|
|
for (let index = 0; index < array.length; index++) {
|
|
|
|
await callback(array[index], index, array);
|
|
|
|
}
|
|
|
|
};
|
2021-04-23 16:14:38 +00:00
|
|
|
|
|
|
|
// FIXME: Temp fix https://github.com/actions/toolkit/issues/777
|
|
|
|
export function setOutput(name: string, value: any): void {
|
|
|
|
issueCommand('set-output', {name}, value);
|
|
|
|
}
|