Compare commits

...

22 Commits

Author SHA1 Message Date
CrazyMax
2038d87306 Merge pull request #43 from crazy-max/fix-standalone
Some checks failed
publish / publish (push) Has been cancelled
fix buildx standalone and check for docker availability
2023-02-18 10:15:26 +01:00
CrazyMax
252c717cc3 fix buildx standalone and check for docker availability
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 10:09:41 +01:00
CrazyMax
9b338b58a7 toolkit: docker property not needed
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 10:08:21 +01:00
CrazyMax
abe37ab72b Merge pull request #42 from crazy-max/buildkit-fix-version
Some checks failed
publish / publish (push) Has been cancelled
buildkit: use node info to retrieve version
2023-02-18 07:34:55 +01:00
CrazyMax
b3a30a9e32 Merge pull request #41 from crazy-max/fix-docker
docker: fix instance
2023-02-18 07:32:33 +01:00
CrazyMax
31e915c017 buildkit: use node info to retrieve version
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 07:31:21 +01:00
CrazyMax
05bbe49fe1 toolkit: add docker
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 07:06:29 +01:00
CrazyMax
c80fedbbae docker: fix instance
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 07:06:20 +01:00
CrazyMax
2c60cad840 Merge pull request #40 from crazy-max/debug
Some checks failed
publish / publish (push) Has been cancelled
some debug logs
2023-02-18 06:00:54 +01:00
CrazyMax
847887b312 some debug logs
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 04:36:32 +01:00
CrazyMax
d9984214c9 Merge pull request #39 from crazy-max/buildkit-ctn-prefix
buildx: make containerNamePrefix static and public
2023-02-18 02:20:37 +01:00
CrazyMax
33b4390bc2 buildx: make containerNamePrefix static and public
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 02:12:09 +01:00
CrazyMax
5e8f679709 Merge pull request #38 from crazy-max/util-quote
Some checks failed
publish / publish (push) Has been cancelled
util: handle quote opt with the same api for input list
2023-02-18 01:57:40 +01:00
CrazyMax
f288f4f7ea util: handle quote opt with the same api for input list
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 01:53:59 +01:00
CrazyMax
cb9121174a Merge pull request #37 from crazy-max/toolkit-builder
toolkit: add builder
2023-02-18 01:37:42 +01:00
CrazyMax
464dfbe1ec toolkit: add builder
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 01:33:37 +01:00
CrazyMax
5695c0049b Merge pull request #36 from crazy-max/update-input-list
Some checks failed
publish / publish (push) Has been cancelled
util: opt to escape quotes for input list
2023-02-18 01:12:26 +01:00
CrazyMax
44b1545abd util: opt to escape quotes for input list
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-18 01:02:56 +01:00
CrazyMax
4d9d62d542 Merge pull request #35 from crazy-max/node-type
builder: add Node type
2023-02-18 00:01:23 +01:00
CrazyMax
aa3c8ef106 Merge pull request #34 from crazy-max/buildx-optional-dest
buildx: dest dir optional on install
2023-02-17 23:58:35 +01:00
CrazyMax
259abb56df builder: add Node type
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-17 23:56:13 +01:00
CrazyMax
76e5a25cff buildx: dest dir optional on install
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-17 23:54:28 +01:00
12 changed files with 171 additions and 102 deletions

View File

@@ -15,7 +15,6 @@
*/ */
import {beforeEach, describe, expect, it, jest, test} from '@jest/globals'; import {beforeEach, describe, expect, it, jest, test} from '@jest/globals';
import * as semver from 'semver';
import {BuildKit} from '../../src/buildkit/buildkit'; import {BuildKit} from '../../src/buildkit/buildkit';
import {Builder} from '../../src/buildx/builder'; import {Builder} from '../../src/buildx/builder';
@@ -48,11 +47,15 @@ jest.spyOn(Builder.prototype, 'inspect').mockImplementation(async (): Promise<Bu
describe('getVersion', () => { describe('getVersion', () => {
it('valid', async () => { it('valid', async () => {
const builder = new Builder({
context: new Context()
});
const builderInfo = await builder.inspect('builder2');
const buildkit = new BuildKit({ const buildkit = new BuildKit({
context: new Context() context: new Context()
}); });
const version = await buildkit.getVersion('builder2'); const version = await buildkit.getVersion(builderInfo.nodes[0]);
expect(semver.valid(version)).not.toBeNull(); expect(version).toBe('v0.11.0');
}); });
}); });

View File

@@ -95,9 +95,7 @@ describe('isAvailable', () => {
context: new Context(), context: new Context(),
standalone: false standalone: false
}); });
buildx.isAvailable().catch(() => { await buildx.isAvailable();
// noop
});
// eslint-disable-next-line jest/no-standalone-expect // eslint-disable-next-line jest/no-standalone-expect
expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx'], { expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx'], {
silent: true, silent: true,
@@ -110,9 +108,7 @@ describe('isAvailable', () => {
context: new Context(), context: new Context(),
standalone: true standalone: true
}); });
buildx.isAvailable().catch(() => { await buildx.isAvailable();
// noop
});
// eslint-disable-next-line jest/no-standalone-expect // eslint-disable-next-line jest/no-standalone-expect
expect(execSpy).toHaveBeenCalledWith(`buildx`, [], { expect(execSpy).toHaveBeenCalledWith(`buildx`, [], {
silent: true, silent: true,
@@ -122,13 +118,13 @@ describe('isAvailable', () => {
}); });
describe('printInspect', () => { describe('printInspect', () => {
it('prints builder2 instance', () => { it('prints builder2 instance', async () => {
const execSpy = jest.spyOn(exec, 'exec'); const execSpy = jest.spyOn(exec, 'exec');
const buildx = new Buildx({ const buildx = new Buildx({
context: new Context(), context: new Context(),
standalone: true standalone: true
}); });
buildx.printInspect('builder2').catch(() => { await buildx.printInspect('builder2').catch(() => {
// noop // noop
}); });
expect(execSpy).toHaveBeenCalledWith(`buildx`, ['inspect', 'builder2'], { expect(execSpy).toHaveBeenCalledWith(`buildx`, ['inspect', 'builder2'], {
@@ -138,24 +134,24 @@ describe('printInspect', () => {
}); });
describe('printVersion', () => { describe('printVersion', () => {
it('docker cli', () => { it('docker cli', async () => {
const execSpy = jest.spyOn(exec, 'exec'); const execSpy = jest.spyOn(exec, 'exec');
const buildx = new Buildx({ const buildx = new Buildx({
context: new Context(), context: new Context(),
standalone: false standalone: false
}); });
buildx.printVersion(); await buildx.printVersion();
expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx', 'version'], { expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx', 'version'], {
failOnStdErr: false failOnStdErr: false
}); });
}); });
it('standalone', () => { it('standalone', async () => {
const execSpy = jest.spyOn(exec, 'exec'); const execSpy = jest.spyOn(exec, 'exec');
const buildx = new Buildx({ const buildx = new Buildx({
context: new Context(), context: new Context(),
standalone: true standalone: true
}); });
buildx.printVersion(); await buildx.printVersion();
expect(execSpy).toHaveBeenCalledWith(`buildx`, ['version'], { expect(execSpy).toHaveBeenCalledWith(`buildx`, ['version'], {
failOnStdErr: false failOnStdErr: false
}); });

View File

@@ -48,9 +48,9 @@ describe('configDir', () => {
}); });
describe('isAvailable', () => { describe('isAvailable', () => {
it('cli', () => { it('cli', async () => {
const execSpy = jest.spyOn(exec, 'getExecOutput'); const execSpy = jest.spyOn(exec, 'getExecOutput');
Docker.isAvailable; await Docker.getInstance().isAvailable();
// eslint-disable-next-line jest/no-standalone-expect // eslint-disable-next-line jest/no-standalone-expect
expect(execSpy).toHaveBeenCalledWith(`docker`, undefined, { expect(execSpy).toHaveBeenCalledWith(`docker`, undefined, {
silent: true, silent: true,

View File

@@ -69,16 +69,28 @@ describe('getInputList', () => {
it('multiline and ignoring comma correctly', async () => { it('multiline and ignoring comma correctly', async () => {
setInput('cache-from', 'user/app:cache\ntype=local,src=path/to/dir'); setInput('cache-from', 'user/app:cache\ntype=local,src=path/to/dir');
const res = Util.getInputList('cache-from', true); const res = Util.getInputList('cache-from', {ignoreComma: true});
expect(res).toEqual(['user/app:cache', 'type=local,src=path/to/dir']); expect(res).toEqual(['user/app:cache', 'type=local,src=path/to/dir']);
}); });
it('different new lines and ignoring comma correctly', async () => { it('different new lines and ignoring comma correctly', async () => {
setInput('cache-from', 'user/app:cache\r\ntype=local,src=path/to/dir'); setInput('cache-from', 'user/app:cache\r\ntype=local,src=path/to/dir');
const res = Util.getInputList('cache-from', true); const res = Util.getInputList('cache-from', {ignoreComma: true});
expect(res).toEqual(['user/app:cache', 'type=local,src=path/to/dir']); expect(res).toEqual(['user/app:cache', 'type=local,src=path/to/dir']);
}); });
it('do not escape surrounding quotes', async () => {
setInput('driver-opts', `"env.no_proxy=localhost,127.0.0.1,.mydomain"`);
const res = Util.getInputList('driver-opts', {ignoreComma: true, quote: false});
expect(res).toEqual(['"env.no_proxy=localhost,127.0.0.1,.mydomain"']);
});
it('escape surrounding quotes', async () => {
setInput('platforms', 'linux/amd64\n"linux/arm64,linux/arm/v7"');
const res = Util.getInputList('platforms');
expect(res).toEqual(['linux/amd64', 'linux/arm64', 'linux/arm/v7']);
});
it('multiline values', async () => { it('multiline values', async () => {
setInput( setInput(
'secrets', 'secrets',
@@ -88,7 +100,7 @@ bbbbbbb
ccccccccc" ccccccccc"
FOO=bar` FOO=bar`
); );
const res = Util.getInputList('secrets', true); const res = Util.getInputList('secrets', {ignoreComma: true});
expect(res).toEqual([ expect(res).toEqual([
'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789', 'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789',
`MYSECRET=aaaaaaaa `MYSECRET=aaaaaaaa
@@ -111,7 +123,7 @@ FOO=bar
bbbb bbbb
ccc"` ccc"`
); );
const res = Util.getInputList('secrets', true); const res = Util.getInputList('secrets', {ignoreComma: true});
expect(res).toEqual([ expect(res).toEqual([
'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789', 'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789',
`MYSECRET=aaaaaaaa `MYSECRET=aaaaaaaa
@@ -134,7 +146,7 @@ bbbbbbb
ccccccccc ccccccccc
FOO=bar` FOO=bar`
); );
const res = Util.getInputList('secrets', true); const res = Util.getInputList('secrets', {ignoreComma: true});
expect(res).toEqual(['GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789', 'MYSECRET=aaaaaaaa', 'bbbbbbb', 'ccccccccc', 'FOO=bar']); expect(res).toEqual(['GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789', 'MYSECRET=aaaaaaaa', 'bbbbbbb', 'ccccccccc', 'FOO=bar']);
}); });
@@ -145,7 +157,7 @@ FOO=bar`
`"GPG_KEY=${pgp}" `"GPG_KEY=${pgp}"
FOO=bar` FOO=bar`
); );
const res = Util.getInputList('secrets', true); const res = Util.getInputList('secrets', {ignoreComma: true});
expect(res).toEqual([`GPG_KEY=${pgp}`, 'FOO=bar']); expect(res).toEqual([`GPG_KEY=${pgp}`, 'FOO=bar']);
}); });
@@ -158,7 +170,7 @@ bbbb""bbb
ccccccccc" ccccccccc"
FOO=bar` FOO=bar`
); );
const res = Util.getInputList('secrets', true); const res = Util.getInputList('secrets', {ignoreComma: true});
expect(res).toEqual([ expect(res).toEqual([
'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789', 'GIT_AUTH_TOKEN=abcdefgh,ijklmno=0123456789',
`MYSECRET=aaaaaaaa `MYSECRET=aaaaaaaa

View File

@@ -23,7 +23,7 @@ import {Buildx} from '../buildx/buildx';
import {Builder} from '../buildx/builder'; import {Builder} from '../buildx/builder';
import {Config} from './config'; import {Config} from './config';
import {BuilderInfo} from '../types/builder'; import {BuilderInfo, NodeInfo} from '../types/builder';
export interface BuildKitOpts { export interface BuildKitOpts {
context: Context; context: Context;
@@ -33,7 +33,6 @@ export interface BuildKitOpts {
export class BuildKit { export class BuildKit {
private readonly context: Context; private readonly context: Context;
private readonly buildx: Buildx; private readonly buildx: Buildx;
private containerNamePrefix = 'buildx_buildkit_';
public readonly config: Config; public readonly config: Config;
@@ -47,14 +46,7 @@ export class BuildKit {
}); });
} }
public async getVersion(builderName: string): Promise<string | undefined> { public async getVersion(node: NodeInfo): Promise<string | undefined> {
const builderInfo = await this.getBuilderInfo(builderName);
if (builderInfo.nodes.length == 0) {
// a builder always have on node, should not happen.
return undefined;
}
// TODO: get version for all nodes
const node = builderInfo.nodes[0];
if (!node.buildkitVersion && node.name) { if (!node.buildkitVersion && node.name) {
try { try {
return await this.getVersionWithinImage(node.name); return await this.getVersionWithinImage(node.name);
@@ -66,13 +58,15 @@ export class BuildKit {
} }
private async getVersionWithinImage(nodeName: string): Promise<string> { private async getVersionWithinImage(nodeName: string): Promise<string> {
core.debug(`BuildKit.getVersionWithinImage nodeName: ${nodeName}`);
return exec return exec
.getExecOutput(`docker`, ['inspect', '--format', '{{.Config.Image}}', `${this.containerNamePrefix}${nodeName}`], { .getExecOutput(`docker`, ['inspect', '--format', '{{.Config.Image}}', `${Buildx.containerNamePrefix}${nodeName}`], {
ignoreReturnCode: true, ignoreReturnCode: true,
silent: true silent: true
}) })
.then(bkitimage => { .then(bkitimage => {
if (bkitimage.exitCode == 0 && bkitimage.stdout.length > 0) { if (bkitimage.exitCode == 0 && bkitimage.stdout.length > 0) {
core.debug(`BuildKit.getVersionWithinImage image: ${bkitimage.stdout.trim()}`);
return exec return exec
.getExecOutput(`docker`, ['run', '--rm', bkitimage.stdout.trim(), '--version'], { .getExecOutput(`docker`, ['run', '--rm', bkitimage.stdout.trim(), '--version'], {
ignoreReturnCode: true, ignoreReturnCode: true,
@@ -93,17 +87,25 @@ export class BuildKit {
}); });
} }
public async versionSatisfies(builderName: string, range: string): Promise<boolean> { public async versionSatisfies(builderName: string, range: string, builderInfo?: BuilderInfo): Promise<boolean> {
const builderInfo = await this.getBuilderInfo(builderName); if (!builderInfo) {
builderInfo = await new Builder({
context: this.context,
buildx: this.buildx
}).inspect(builderName);
}
for (const node of builderInfo.nodes) { for (const node of builderInfo.nodes) {
core.debug(`BuildKit.versionSatisfies ${node}: ${range}`);
let bkversion = node.buildkitVersion; let bkversion = node.buildkitVersion;
if (!bkversion) { if (!bkversion) {
try { try {
bkversion = await this.getVersionWithinImage(node.name || ''); bkversion = await this.getVersionWithinImage(node.name || '');
} catch (e) { } catch (e) {
core.debug(`BuildKit.versionSatisfies ${node}: can't get version`);
return false; return false;
} }
} }
core.debug(`BuildKit.versionSatisfies ${node}: version ${bkversion}`);
// BuildKit version reported by moby is in the format of `v0.11.0-moby` // BuildKit version reported by moby is in the format of `v0.11.0-moby`
if (builderInfo.driver == 'docker' && !bkversion.endsWith('-moby')) { if (builderInfo.driver == 'docker' && !bkversion.endsWith('-moby')) {
return false; return false;
@@ -114,12 +116,4 @@ export class BuildKit {
} }
return true; return true;
} }
private async getBuilderInfo(name: string): Promise<BuilderInfo> {
const builder = new Builder({
context: this.context,
buildx: this.buildx
});
return builder.inspect(name);
}
} }

View File

@@ -40,7 +40,7 @@ export class Builder {
} }
public async inspect(name: string): Promise<BuilderInfo> { public async inspect(name: string): Promise<BuilderInfo> {
const cmd = this.buildx.getCommand(['inspect', name]); const cmd = await this.buildx.getCommand(['inspect', name]);
return await exec return await exec
.getExecOutput(cmd.command, cmd.args, { .getExecOutput(cmd.command, cmd.args, {
ignoreReturnCode: true, ignoreReturnCode: true,

View File

@@ -16,6 +16,7 @@
import fs from 'fs'; import fs from 'fs';
import path from 'path'; import path from 'path';
import * as core from '@actions/core';
import * as exec from '@actions/exec'; import * as exec from '@actions/exec';
import * as semver from 'semver'; import * as semver from 'semver';
@@ -31,16 +32,18 @@ export interface BuildxOpts {
} }
export class Buildx { export class Buildx {
private readonly context: Context;
private _version: string | undefined; private _version: string | undefined;
private readonly _standalone: boolean | undefined;
private readonly context: Context;
public readonly inputs: Inputs; public readonly inputs: Inputs;
public readonly standalone: boolean;
public static readonly containerNamePrefix = 'buildx_buildkit_';
constructor(opts: BuildxOpts) { constructor(opts: BuildxOpts) {
this._standalone = opts?.standalone;
this.context = opts.context; this.context = opts.context;
this.inputs = new Inputs(this.context); this.inputs = new Inputs(this.context);
this.standalone = opts?.standalone ?? !Docker.isAvailable;
} }
static get configDir(): string { static get configDir(): string {
@@ -51,15 +54,22 @@ export class Buildx {
return path.join(Buildx.configDir, 'certs'); return path.join(Buildx.configDir, 'certs');
} }
public getCommand(args: Array<string>) { public async isStandalone(): Promise<boolean> {
const standalone = this._standalone ?? !(await Docker.getInstance().isAvailable());
core.debug(`Buildx.isStandalone: ${standalone}`);
return standalone;
}
public async getCommand(args: Array<string>) {
const standalone = await this.isStandalone();
return { return {
command: this.standalone ? 'buildx' : 'docker', command: standalone ? 'buildx' : 'docker',
args: this.standalone ? args : ['buildx', ...args] args: standalone ? args : ['buildx', ...args]
}; };
} }
public async isAvailable(): Promise<boolean> { public async isAvailable(): Promise<boolean> {
const cmd = this.getCommand([]); const cmd = await this.getCommand([]);
return await exec return await exec
.getExecOutput(cmd.command, cmd.args, { .getExecOutput(cmd.command, cmd.args, {
ignoreReturnCode: true, ignoreReturnCode: true,
@@ -78,7 +88,7 @@ export class Buildx {
} }
public async printInspect(name: string): Promise<void> { public async printInspect(name: string): Promise<void> {
const cmd = this.getCommand(['inspect', name]); const cmd = await this.getCommand(['inspect', name]);
await exec.exec(cmd.command, cmd.args, { await exec.exec(cmd.command, cmd.args, {
failOnStdErr: false failOnStdErr: false
}); });
@@ -87,7 +97,7 @@ export class Buildx {
get version() { get version() {
return (async () => { return (async () => {
if (!this._version) { if (!this._version) {
const cmd = this.getCommand(['version']); const cmd = await this.getCommand(['version']);
this._version = await exec this._version = await exec
.getExecOutput(cmd.command, cmd.args, { .getExecOutput(cmd.command, cmd.args, {
ignoreReturnCode: true, ignoreReturnCode: true,
@@ -105,7 +115,7 @@ export class Buildx {
} }
public async printVersion() { public async printVersion() {
const cmd = this.getCommand(['version']); const cmd = await this.getCommand(['version']);
await exec.exec(cmd.command, cmd.args, { await exec.exec(cmd.command, cmd.args, {
failOnStdErr: false failOnStdErr: false
}); });
@@ -122,9 +132,12 @@ export class Buildx {
public async versionSatisfies(range: string, version?: string): Promise<boolean> { public async versionSatisfies(range: string, version?: string): Promise<boolean> {
const ver = version ?? (await this.version); const ver = version ?? (await this.version);
if (!ver) { if (!ver) {
core.debug(`Buildx.versionSatisfies false: undefined version`);
return false; return false;
} }
return semver.satisfies(ver, range) || /^[0-9a-f]{7}$/.exec(ver) !== null; const res = semver.satisfies(ver, range) || /^[0-9a-f]{7}$/.exec(ver) !== null;
core.debug(`Buildx.versionSatisfies ${ver} statisfies ${range}: ${res}`);
return res;
} }
public static resolveCertsDriverOpts(driver: string, endpoint: string, cert: Cert): Array<string> { public static resolveCertsDriverOpts(driver: string, endpoint: string, cert: Cert): Array<string> {

View File

@@ -37,17 +37,19 @@ export interface InstallOpts {
} }
export class Install { export class Install {
private readonly _standalone: boolean | undefined;
private readonly context: Context; private readonly context: Context;
private readonly standalone: boolean;
constructor(opts?: InstallOpts) { constructor(opts?: InstallOpts) {
this.context = opts?.context || new Context(); this.context = opts?.context || new Context();
this.standalone = opts?.standalone ?? !Docker.isAvailable; this._standalone = opts?.standalone;
} }
public async download(version: string, dest: string): Promise<string> { public async download(version: string, dest?: string): Promise<string> {
const release: GitHubRelease = await Install.getRelease(version); const release: GitHubRelease = await Install.getRelease(version);
const fversion = release.tag_name.replace(/^v+|v+$/g, ''); const fversion = release.tag_name.replace(/^v+|v+$/g, '');
core.debug(`Install.download version: ${fversion}`);
let toolPath: string; let toolPath: string;
toolPath = tc.find('buildx', fversion, this.platform()); toolPath = tc.find('buildx', fversion, this.platform());
@@ -58,14 +60,17 @@ export class Install {
} }
toolPath = await this.fetchBinary(fversion); toolPath = await this.fetchBinary(fversion);
} }
core.debug(`Install.download toolPath: ${toolPath}`);
if (this.standalone) { dest = dest || ((await this.isStandalone()) ? this.context.tmpDir() : Docker.configDir);
core.debug(`Install.download dest: ${dest}`);
if (await this.isStandalone()) {
return this.setStandalone(toolPath, dest); return this.setStandalone(toolPath, dest);
} }
return this.setPlugin(toolPath, dest); return this.setPlugin(toolPath, dest);
} }
public async build(gitContext: string, dest: string): Promise<string> { public async build(gitContext: string, dest?: string): Promise<string> {
// eslint-disable-next-line prefer-const // eslint-disable-next-line prefer-const
let [repo, ref] = gitContext.split('#'); let [repo, ref] = gitContext.split('#');
if (ref.length == 0) { if (ref.length == 0) {
@@ -79,7 +84,7 @@ export class Install {
} else { } else {
vspec = await Git.getRemoteSha(repo, ref); vspec = await Git.getRemoteSha(repo, ref);
} }
core.debug(`Tool version spec ${vspec}`); core.debug(`Install.build: tool version spec ${vspec}`);
let toolPath: string; let toolPath: string;
toolPath = tc.find('buildx', vspec); toolPath = tc.find('buildx', vspec);
@@ -98,7 +103,9 @@ export class Install {
}); });
} }
if (this.standalone) { dest = dest || Docker.configDir;
core.debug(`Install.build dest: ${dest}`);
if (await this.isStandalone()) {
return this.setStandalone(toolPath, dest); return this.setStandalone(toolPath, dest);
} }
return this.setPlugin(toolPath, dest); return this.setPlugin(toolPath, dest);
@@ -109,24 +116,24 @@ export class Install {
const buildxPluginFound = await new Buildx({context: this.context, standalone: false}).isAvailable(); const buildxPluginFound = await new Buildx({context: this.context, standalone: false}).isAvailable();
let buildStandalone = false; let buildStandalone = false;
if (this.standalone && buildxStandaloneFound) { if ((await this.isStandalone()) && buildxStandaloneFound) {
core.debug(`Buildx standalone found, build with it`); core.debug(`Install.buildCommand: Buildx standalone found, build with it`);
buildStandalone = true; buildStandalone = true;
} else if (!this.standalone && buildxPluginFound) { } else if (!(await this.isStandalone()) && buildxPluginFound) {
core.debug(`Buildx plugin found, build with it`); core.debug(`Install.buildCommand: Buildx plugin found, build with it`);
buildStandalone = false; buildStandalone = false;
} else if (buildxStandaloneFound) { } else if (buildxStandaloneFound) {
core.debug(`Buildx plugin not found, but standalone found so trying to build with it`); core.debug(`Install.buildCommand: Buildx plugin not found, but standalone found so trying to build with it`);
buildStandalone = true; buildStandalone = true;
} else if (buildxPluginFound) { } else if (buildxPluginFound) {
core.debug(`Buildx standalone not found, but plugin found so trying to build with it`); core.debug(`Install.buildCommand: Buildx standalone not found, but plugin found so trying to build with it`);
buildStandalone = false; buildStandalone = false;
} else { } else {
throw new Error(`Neither buildx standalone or plugin have been found to build from ref ${gitContext}`); throw new Error(`Neither buildx standalone or plugin have been found to build from ref ${gitContext}`);
} }
//prettier-ignore //prettier-ignore
return new Buildx({context: this.context, standalone: buildStandalone}).getCommand([ return await new Buildx({context: this.context, standalone: buildStandalone}).getCommand([
'build', 'build',
'--target', 'binaries', '--target', 'binaries',
'--build-arg', 'BUILDKIT_CONTEXT_KEEP_GIT_DIR=1', '--build-arg', 'BUILDKIT_CONTEXT_KEEP_GIT_DIR=1',
@@ -135,6 +142,12 @@ export class Install {
]); ]);
} }
private async isStandalone(): Promise<boolean> {
const standalone = this._standalone ?? !(await Docker.getInstance().isAvailable());
core.debug(`Install.isStandalone: ${standalone}`);
return standalone;
}
private async setStandalone(toolPath: string, dest: string): Promise<string> { private async setStandalone(toolPath: string, dest: string): Promise<string> {
const toolBinPath = path.join(toolPath, os.platform() == 'win32' ? 'docker-buildx.exe' : 'docker-buildx'); const toolBinPath = path.join(toolPath, os.platform() == 'win32' ? 'docker-buildx.exe' : 'docker-buildx');
const binDir = path.join(dest, 'bin'); const binDir = path.join(dest, 'bin');
@@ -146,6 +159,7 @@ export class Install {
fs.copyFileSync(toolBinPath, buildxPath); fs.copyFileSync(toolBinPath, buildxPath);
fs.chmodSync(buildxPath, '0755'); fs.chmodSync(buildxPath, '0755');
core.addPath(binDir); core.addPath(binDir);
core.debug(`Install.setStandalone buildxPath: ${buildxPath}`);
return buildxPath; return buildxPath;
} }
@@ -159,6 +173,7 @@ export class Install {
const pluginPath: string = path.join(pluginsDir, filename); const pluginPath: string = path.join(pluginsDir, filename);
fs.copyFileSync(toolBinPath, pluginPath); fs.copyFileSync(toolBinPath, pluginPath);
fs.chmodSync(pluginPath, '0755'); fs.chmodSync(pluginPath, '0755');
core.debug(`Install.setPlugin pluginPath: ${pluginPath}`);
return pluginPath; return pluginPath;
} }

View File

@@ -16,37 +16,52 @@
import os from 'os'; import os from 'os';
import path from 'path'; import path from 'path';
import * as core from '@actions/core';
import * as exec from '@actions/exec'; import * as exec from '@actions/exec';
export class Docker { export class Docker {
private static instance?: Docker;
static getInstance = (): Docker => (Docker.instance = Docker.instance ?? new Docker());
private _available: boolean | undefined;
// eslint-disable-next-line @typescript-eslint/no-empty-function
private constructor() {}
static get configDir(): string { static get configDir(): string {
return process.env.DOCKER_CONFIG || path.join(os.homedir(), '.docker'); return process.env.DOCKER_CONFIG || path.join(os.homedir(), '.docker');
} }
static get isAvailable(): boolean { public async isAvailable(): Promise<boolean> {
let dockerAvailable = false; if (this._available === undefined) {
exec await exec
.getExecOutput('docker', undefined, { .getExecOutput('docker', undefined, {
ignoreReturnCode: true, ignoreReturnCode: true,
silent: true silent: true
}) })
.then(res => { .then(res => {
if (res.stderr.length > 0 && res.exitCode != 0) { if (res.stderr.length > 0 && res.exitCode != 0) {
dockerAvailable = false; core.debug(`Docker.available error: ${res.stderr}`);
} else { this._available = false;
dockerAvailable = res.exitCode == 0; } else {
} core.debug(`Docker.available ok`);
}) this._available = res.exitCode == 0;
// eslint-disable-next-line @typescript-eslint/no-unused-vars }
.catch(error => { })
dockerAvailable = false; // eslint-disable-next-line @typescript-eslint/no-unused-vars
}); .catch(error => {
return dockerAvailable; core.debug(`Docker.available failed: ${error}`);
this._available = false;
});
}
core.debug(`Docker.available: ${this._available}`);
return this._available ?? false;
} }
public static async printVersion(standalone?: boolean) { public static async printVersion(standalone?: boolean): Promise<void> {
const noDocker = standalone ?? !Docker.isAvailable; const noDocker = standalone ?? !(await Docker.getInstance().isAvailable());
if (noDocker) { if (noDocker) {
core.debug('Docker.printVersion: Docker is not available, skipping.');
return; return;
} }
await exec.exec('docker', ['version'], { await exec.exec('docker', ['version'], {
@@ -54,9 +69,10 @@ export class Docker {
}); });
} }
public static async printInfo(standalone?: boolean) { public static async printInfo(standalone?: boolean): Promise<void> {
const noDocker = standalone ?? !Docker.isAvailable; const noDocker = standalone ?? !(await Docker.getInstance().isAvailable());
if (noDocker) { if (noDocker) {
core.debug('Docker.printInfo: Docker is not available, skipping.');
return; return;
} }
await exec.exec('docker', ['info'], { await exec.exec('docker', ['info'], {

View File

@@ -17,6 +17,7 @@
import {Context} from './context'; import {Context} from './context';
import {Buildx} from './buildx/buildx'; import {Buildx} from './buildx/buildx';
import {Install} from './buildx/install'; import {Install} from './buildx/install';
import {Builder} from './buildx/builder';
import {BuildKit} from './buildkit/buildkit'; import {BuildKit} from './buildkit/buildkit';
import {GitHub} from './github'; import {GitHub} from './github';
@@ -33,13 +34,15 @@ export class Toolkit {
public github: GitHub; public github: GitHub;
public buildx: Buildx; public buildx: Buildx;
public buildxInstall: Install; public buildxInstall: Install;
public builder: Builder;
public buildkit: BuildKit; public buildkit: BuildKit;
constructor(opts: ToolkitOpts = {}) { constructor(opts: ToolkitOpts = {}) {
this.context = new Context(); this.context = new Context();
this.github = new GitHub({token: opts.githubToken}); this.github = new GitHub({token: opts.githubToken});
this.buildx = new Buildx({context: this.context}); this.buildx = new Buildx({context: this.context});
this.buildxInstall = new Install({context: this.context, standalone: this.buildx.standalone}); this.buildxInstall = new Install({context: this.context});
this.builder = new Builder({context: this.context, buildx: this.buildx});
this.buildkit = new BuildKit({context: this.context, buildx: this.buildx}); this.buildkit = new BuildKit({context: this.context, buildx: this.buildx});
} }
} }

View File

@@ -30,3 +30,11 @@ export interface NodeInfo {
buildkitVersion?: string; buildkitVersion?: string;
platforms?: string; platforms?: string;
} }
export interface Node {
name?: string;
endpoint?: string;
'driver-opts'?: Array<string>;
'buildkitd-flags'?: string;
platforms?: string;
}

View File

@@ -17,8 +17,13 @@
import * as core from '@actions/core'; import * as core from '@actions/core';
import {parse} from 'csv-parse/sync'; import {parse} from 'csv-parse/sync';
export interface InputListOpts {
ignoreComma?: boolean;
quote?: string | boolean | Buffer | null;
}
export class Util { export class Util {
public static getInputList(name: string, ignoreComma?: boolean): string[] { public static getInputList(name: string, opts?: InputListOpts): string[] {
const res: Array<string> = []; const res: Array<string> = [];
const items = core.getInput(name); const items = core.getInput(name);
@@ -31,18 +36,22 @@ export class Util {
relaxQuotes: true, relaxQuotes: true,
comment: '#', comment: '#',
relaxColumnCount: true, relaxColumnCount: true,
skipEmptyLines: true skipEmptyLines: true,
quote: opts?.quote
}); });
for (const record of records as Array<string[]>) { for (const record of records as Array<string[]>) {
if (record.length == 1) { if (record.length == 1) {
res.push(record[0]); if (opts?.ignoreComma) {
continue; res.push(record[0]);
} else if (!ignoreComma) { } else {
res.push(...record[0].split(','));
}
} else if (!opts?.ignoreComma) {
res.push(...record); res.push(...record);
continue; } else {
res.push(record.join(','));
} }
res.push(record.join(','));
} }
return res.filter(item => item).map(pat => pat.trim()); return res.filter(item => item).map(pat => pat.trim());