2020-08-18 15:40:31 +00:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
|
|
|
import * as semver from 'semver';
|
|
|
|
import * as util from 'util';
|
2020-09-03 14:23:15 +00:00
|
|
|
import * as context from './context';
|
2020-08-18 15:40:31 +00:00
|
|
|
import * as exec from './exec';
|
|
|
|
import * as github from './github';
|
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
|
|
|
|
export async function isAvailable(): Promise<Boolean> {
|
|
|
|
return await exec.exec(`docker`, ['buildx'], true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return res.success;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function countBuilders(): Promise<number> {
|
|
|
|
return await exec.exec(`docker`, ['buildx', 'ls'], true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(`Cannot list builders: ${res.stderr}`);
|
|
|
|
}
|
|
|
|
return (res.stdout.trim().split(`\n`).length - 1) / 2;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function platforms(): Promise<String | undefined> {
|
|
|
|
return await exec.exec(`docker`, ['buildx', 'inspect'], true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(res.stderr);
|
|
|
|
}
|
|
|
|
for (const line of res.stdout.trim().split(`\n`)) {
|
|
|
|
if (line.startsWith('Platforms')) {
|
|
|
|
return line.replace('Platforms: ', '').replace(/\s/g, '').trim();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function install(inputVersion: string, dockerConfigHome: string): Promise<string> {
|
|
|
|
const release: github.GitHubRelease | null = await github.getRelease(inputVersion);
|
|
|
|
if (!release) {
|
|
|
|
throw new Error(`Cannot find buildx ${inputVersion} release`);
|
|
|
|
}
|
|
|
|
core.debug(`Release found: ${release.tag_name}`);
|
|
|
|
const version = release.tag_name.replace(/^v+|v+$/g, '');
|
|
|
|
|
|
|
|
let toolPath: string;
|
|
|
|
toolPath = tc.find('buildx', version);
|
|
|
|
if (!toolPath) {
|
|
|
|
const c = semver.clean(version) || '';
|
|
|
|
if (!semver.valid(c)) {
|
|
|
|
throw new Error(`Invalid Buildx version "${version}".`);
|
|
|
|
}
|
|
|
|
toolPath = await download(version);
|
|
|
|
}
|
|
|
|
|
|
|
|
const pluginsDir: string = path.join(dockerConfigHome, 'cli-plugins');
|
|
|
|
core.debug(`Plugins dir is ${pluginsDir}`);
|
|
|
|
if (!fs.existsSync(pluginsDir)) {
|
|
|
|
fs.mkdirSync(pluginsDir, {recursive: true});
|
|
|
|
}
|
|
|
|
|
2020-09-03 14:23:15 +00:00
|
|
|
const filename: string = context.osPlat == 'win32' ? 'docker-buildx.exe' : 'docker-buildx';
|
2020-08-18 15:40:31 +00:00
|
|
|
const pluginPath: string = path.join(pluginsDir, filename);
|
|
|
|
core.debug(`Plugin path is ${pluginPath}`);
|
|
|
|
fs.copyFileSync(path.join(toolPath, filename), pluginPath);
|
|
|
|
|
|
|
|
core.info('🔨 Fixing perms...');
|
|
|
|
fs.chmodSync(pluginPath, '0755');
|
|
|
|
|
|
|
|
return pluginPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function download(version: string): Promise<string> {
|
|
|
|
version = semver.clean(version) || '';
|
2020-09-03 14:23:15 +00:00
|
|
|
const platform: string = context.osPlat == 'win32' ? 'windows' : context.osPlat;
|
|
|
|
const ext: string = context.osPlat == 'win32' ? '.exe' : '';
|
2020-08-18 15:40:31 +00:00
|
|
|
const filename: string = util.format('buildx-v%s.%s-amd64%s', version, platform, ext);
|
2020-09-03 14:23:15 +00:00
|
|
|
const targetFile: string = context.osPlat == 'win32' ? 'docker-buildx.exe' : 'docker-buildx';
|
2020-08-18 15:40:31 +00:00
|
|
|
|
|
|
|
const downloadUrl = util.format('https://github.com/docker/buildx/releases/download/v%s/%s', version, filename);
|
|
|
|
let downloadPath: string;
|
|
|
|
|
|
|
|
try {
|
|
|
|
core.info(`⬇️ Downloading ${downloadUrl}...`);
|
|
|
|
downloadPath = await tc.downloadTool(downloadUrl);
|
|
|
|
core.debug(`Downloaded to ${downloadPath}`);
|
|
|
|
} catch (error) {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return await tc.cacheFile(downloadPath, targetFile, 'buildx', version);
|
|
|
|
}
|