2020-08-16 00:36:41 +02:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as buildx from './buildx';
|
2020-08-16 17:18:08 +02:00
|
|
|
import {Inputs, getInputs, getArgs} from './context';
|
2020-08-16 22:31:37 +02:00
|
|
|
import * as github from './github';
|
|
|
|
import * as stateHelper from './state-helper';
|
2020-08-16 00:36:41 +02:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
|
|
|
|
async function run(): Promise<void> {
|
|
|
|
try {
|
|
|
|
if (os.platform() !== 'linux') {
|
|
|
|
core.setFailed('Only supported on linux platform');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-16 05:53:50 +02:00
|
|
|
if (!(await buildx.isAvailable())) {
|
|
|
|
core.setFailed(`Buildx is required. See https://github.com/docker/setup-buildx-action to set up buildx.`);
|
|
|
|
return;
|
2020-08-16 00:36:41 +02:00
|
|
|
}
|
|
|
|
|
2020-08-16 22:31:37 +02:00
|
|
|
let inputs: Inputs = await getInputs();
|
2020-08-16 05:53:50 +02:00
|
|
|
if (inputs.builder) {
|
|
|
|
core.info(`📌 Using builder instance ${inputs.builder}`);
|
|
|
|
await buildx.use(inputs.builder);
|
|
|
|
}
|
2020-08-16 22:31:37 +02:00
|
|
|
inputs = await github.restoreCache(inputs);
|
|
|
|
|
2020-08-16 00:36:41 +02:00
|
|
|
core.info(`🏃 Starting build...`);
|
2020-08-16 22:41:18 +02:00
|
|
|
const args: string[] = await getArgs(inputs);
|
2020-08-16 17:24:31 +02:00
|
|
|
await exec.exec('docker', args);
|
2020-08-16 00:36:41 +02:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-16 22:31:37 +02:00
|
|
|
async function post(): Promise<void> {
|
|
|
|
const inputs: Inputs = await getInputs();
|
|
|
|
await github.saveCache(inputs);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!stateHelper.IsPost) {
|
|
|
|
run();
|
|
|
|
} else {
|
|
|
|
post();
|
|
|
|
}
|