Build server prototype (integration with GitHub / NuGet / etc)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
micro-build-server/BuildServer/lib/routes/manual.ts

26 lines
700 B

"use strict";
import * as express from "express";
import { build } from "../builder";
import { getSettings } from "../settings-wrapper";
export const get: express.RequestHandler = (_req, res) => res.render("manual");
export const post: express.RequestHandler = (req, res) => {
const settings = getSettings(req.app);
const options = {
...req.body,
url: `https://pos-github.payonline.ru/${req.body.owner}/${req.body.reponame}`,
};
build(settings, options, (err, result) => {
console.log("Done processing manual request");
console.log(`Error: ${err}`);
res.render("manual-done", {
err,
result,
});
});
};