first commit

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
Luca Stocchi 2020-11-06 18:42:45 +01:00
commit 7cfe2a742f
No known key found for this signature in database
GPG key ID: 930BB00F3FCF30A4
3 changed files with 176 additions and 0 deletions

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "buildah-action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}

95
src/buildah.ts Normal file
View file

@ -0,0 +1,95 @@
import * as exec from "@actions/exec";
interface Buildah {
from(baseImage?: string): Promise<CommandResult>;
copy(container: string, content: string): Promise<CommandResult>;
config(container: string, setting: {}): Promise<CommandResult>;
commit(container: string, newImageName: string, flags?: string[]): Promise<CommandResult>;
}
export interface BuildahConfigSettings {
author?: string;
annotation?: string;
arch?: string;
created_by?: string;
entrypoint?: string[];
labels?: string[];
envs?: string[];
port?: string;
}
export interface CommandSucceeeded {
readonly succeeded: true;
readonly output?: string;
}
export interface CommandFailed {
readonly succeeded: false;
readonly reason?: string;
}
export type CommandResult = CommandFailed | CommandSucceeeded;
export class BuildahCli implements Buildah {
private executable: string;
constructor(executable: string) {
this.executable = executable;
}
async from(baseImage?: string): Promise<CommandResult> {
if (!baseImage) {
// find correct baseImage based on language project
}
return await this.execute(['from', baseImage]);
}
async copy(container: string, content: string, path?: string): Promise<CommandResult> {
const args: string[] = ["copy", container, content];
if (path) {
args.push(path);
}
return await this.execute(args);
}
async config(container: string, settings: BuildahConfigSettings): Promise<CommandResult> {
const args: string[] = ['config'];
if (settings.entrypoint) {
args.push('--entrypoint');
args.push(...settings.entrypoint);
}
if (settings.port) {
args.push('--port');
args.push(...settings.port);
}
args.push(container);
return await this.execute(args);
}
async commit(container: string, newImageName: string, flags: string[] = []): Promise<CommandResult> {
const args: string[] = ["commit", ...flags, container, newImageName];
return await this.execute(args);
}
private async execute(args: string[]): Promise<CommandResult> {
if (!this.executable) {
return Promise.reject(new Error('Unable to call buildah executable'));
}
let output = '';
let error = '';
const options: exec.ExecOptions = {
listeners: {
stdout: (data: Buffer) => {
output += data.toString();
},
stderr: (data: Buffer) => {
error += data.toString();
}
}
};
await exec.exec(`${this.executable}`, args, options);
if (error) {
return Promise.resolve({ succeeded: false, error: error });
}
return Promise.resolve({ succeeded: true, output: output });
}
}

69
src/index.ts Normal file
View file

@ -0,0 +1,69 @@
import * as core from '@actions/core';
import * as io from '@actions/io';
import { BuildahCli, BuildahConfigSettings } from './buildah';
/**
* 1. Buildah only works on Linux as the docker action
* 2. Does this action also need to setup buildah?
* 3. Does this action also have the ability to push to a registry?
*
*/
export async function run(): Promise<void> {
const baseImage = core.getInput('base-image');
const content = core.getInput('content');
const entrypoint = await getInputList('entrypoint');
const port = core.getInput('port');
const newImageName = core.getInput('new-image-name');
const runnerOS = process.env.RUNNER_OS;
if (runnerOS !== 'linux') {
throw new Error(`Only supported on linux platform`);
}
// get buildah cli
const buildahPath = await io.which('buildah', true);
// create image
const cli: BuildahCli = new BuildahCli(buildahPath);
const creationResult = await cli.from(baseImage);
if (creationResult.succeeded === false) {
return Promise.reject(new Error(creationResult.reason));
}
const containerId = creationResult.output;
const copyResult = await cli.copy(containerId, content);
if (copyResult.succeeded === false) {
return Promise.reject(new Error(copyResult.reason));
}
const configuration: BuildahConfigSettings = {
entrypoint: entrypoint,
port: port
}
const configResult = await cli.config(containerId, configuration);
if (configResult.succeeded === false) {
return Promise.reject(new Error(configResult.reason));
}
const commit = await cli.commit(containerId, newImageName, ['--squash']);
if (commit.succeeded === false) {
return Promise.reject(new Error(commit.reason));
}
core.setOutput('image', newImageName);
}
export async function getInputList(name: string, ignoreComma?: boolean): Promise<string[]> {
const items = core.getInput(name);
if (items == '') {
return [];
}
return items
.split(/\r?\n/)
.filter(x => x)
.reduce<string[]>(
(acc, line) => acc.concat(!ignoreComma ? line.split(',').filter(x => x) : line).map(pat => pat.trim()),
[]
);
}
run().catch(core.setFailed);