2023-01-31 03:34:51 +01:00
|
|
|
/**
|
|
|
|
|
* Copyright 2023 actions-toolkit authors
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
import fs from 'fs';
|
2023-01-17 11:53:57 +01:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
|
import * as exec from '@actions/exec';
|
2023-01-23 10:07:14 +01:00
|
|
|
import * as semver from 'semver';
|
2023-01-17 11:53:57 +01:00
|
|
|
|
2023-01-30 00:08:45 +01:00
|
|
|
import {Context} from './context';
|
2023-01-31 21:13:39 +01:00
|
|
|
import {Buildx} from './buildx/buildx';
|
|
|
|
|
import {Builder} from './buildx/builder';
|
|
|
|
|
|
|
|
|
|
import {BuilderInfo} from './types/builder';
|
2023-01-17 11:53:57 +01:00
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
export interface BuildKitOpts {
|
2023-01-30 00:08:45 +01:00
|
|
|
context: Context;
|
2023-01-23 10:07:14 +01:00
|
|
|
buildx?: Buildx;
|
2023-01-17 11:53:57 +01:00
|
|
|
}
|
|
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
export class BuildKit {
|
2023-01-30 00:08:45 +01:00
|
|
|
private readonly context: Context;
|
|
|
|
|
private readonly buildx: Buildx;
|
2023-01-23 10:07:14 +01:00
|
|
|
private containerNamePrefix = 'buildx_buildkit_';
|
|
|
|
|
|
2023-01-30 00:08:45 +01:00
|
|
|
constructor(opts: BuildKitOpts) {
|
|
|
|
|
this.context = opts.context;
|
|
|
|
|
this.buildx =
|
|
|
|
|
opts?.buildx ||
|
|
|
|
|
new Buildx({
|
|
|
|
|
context: this.context
|
|
|
|
|
});
|
2023-01-23 15:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
public async getVersion(builderName: string): 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) {
|
|
|
|
|
try {
|
|
|
|
|
return await this.getVersionWithinImage(node.name);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
core.warning(e);
|
|
|
|
|
}
|
2023-01-17 11:53:57 +01:00
|
|
|
}
|
2023-01-23 10:07:14 +01:00
|
|
|
return node.buildkitVersion;
|
2023-01-17 11:53:57 +01:00
|
|
|
}
|
|
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
private async getVersionWithinImage(nodeName: string): Promise<string> {
|
|
|
|
|
return exec
|
|
|
|
|
.getExecOutput(`docker`, ['inspect', '--format', '{{.Config.Image}}', `${this.containerNamePrefix}${nodeName}`], {
|
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
|
silent: true
|
|
|
|
|
})
|
|
|
|
|
.then(bkitimage => {
|
|
|
|
|
if (bkitimage.exitCode == 0 && bkitimage.stdout.length > 0) {
|
|
|
|
|
return exec
|
|
|
|
|
.getExecOutput(`docker`, ['run', '--rm', bkitimage.stdout.trim(), '--version'], {
|
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
|
silent: true
|
|
|
|
|
})
|
|
|
|
|
.then(bkitversion => {
|
|
|
|
|
if (bkitversion.exitCode == 0 && bkitversion.stdout.length > 0) {
|
|
|
|
|
return `${bkitimage.stdout.trim()} => ${bkitversion.stdout.trim()}`;
|
|
|
|
|
} else if (bkitversion.stderr.length > 0) {
|
|
|
|
|
throw new Error(bkitimage.stderr.trim());
|
|
|
|
|
}
|
|
|
|
|
return bkitversion.stdout.trim();
|
|
|
|
|
});
|
|
|
|
|
} else if (bkitimage.stderr.length > 0) {
|
|
|
|
|
throw new Error(bkitimage.stderr.trim());
|
|
|
|
|
}
|
|
|
|
|
return bkitimage.stdout.trim();
|
|
|
|
|
});
|
|
|
|
|
}
|
2023-01-17 11:53:57 +01:00
|
|
|
|
2023-01-23 10:07:14 +01:00
|
|
|
public async versionSatisfies(builderName: string, range: string): Promise<boolean> {
|
|
|
|
|
const builderInfo = await this.getBuilderInfo(builderName);
|
|
|
|
|
for (const node of builderInfo.nodes) {
|
|
|
|
|
let bkversion = node.buildkitVersion;
|
|
|
|
|
if (!bkversion) {
|
|
|
|
|
try {
|
|
|
|
|
bkversion = await this.getVersionWithinImage(node.name || '');
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// BuildKit version reported by moby is in the format of `v0.11.0-moby`
|
|
|
|
|
if (builderInfo.driver == 'docker' && !bkversion.endsWith('-moby')) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (!semver.satisfies(bkversion.replace(/-moby$/, ''), range)) {
|
2023-01-17 11:53:57 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-23 10:07:14 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public generateConfigInline(s: string): string {
|
|
|
|
|
return this.generateConfig(s, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public generateConfigFile(s: string): string {
|
|
|
|
|
return this.generateConfig(s, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private generateConfig(s: string, file: boolean): string {
|
|
|
|
|
if (file) {
|
|
|
|
|
if (!fs.existsSync(s)) {
|
|
|
|
|
throw new Error(`config file ${s} not found`);
|
|
|
|
|
}
|
|
|
|
|
s = fs.readFileSync(s, {encoding: 'utf-8'});
|
2023-01-17 11:53:57 +01:00
|
|
|
}
|
2023-01-30 00:08:45 +01:00
|
|
|
const configFile = this.context.tmpName({tmpdir: this.context.tmpDir()});
|
2023-01-23 10:07:14 +01:00
|
|
|
fs.writeFileSync(configFile, s);
|
|
|
|
|
return configFile;
|
|
|
|
|
}
|
2023-01-31 21:13:39 +01:00
|
|
|
|
|
|
|
|
private async getBuilderInfo(name: string): Promise<BuilderInfo> {
|
|
|
|
|
const builder = new Builder({
|
|
|
|
|
context: this.context,
|
|
|
|
|
buildx: this.buildx
|
|
|
|
|
});
|
|
|
|
|
return builder.inspect(name);
|
|
|
|
|
}
|
2023-01-17 11:53:57 +01:00
|
|
|
}
|