npmci/ts/npmci.env.ts

59 lines
1.8 KiB
TypeScript
Raw Normal View History

import "typings-global";
import * as plugins from "./npmci.plugins";
import * as paths from "./npmci.paths";
import {GitRepo} from "smartstring";
import {Dockerfile} from "./npmci.build.docker"
export let repo:GitRepo;
if(process.env.CI_BUILD_REPO) repo = new GitRepo(process.env.CI_BUILD_REPO);
2016-06-05 19:11:30 +00:00
export let buildStage:string = process.env.CI_BUILD_STAGE;
2016-06-03 01:44:24 +00:00
// handling config between commands
2016-06-04 23:31:21 +00:00
export let dockerRegistry; // will be set by npmci.prepare
export let dockerFilesBuilt:Dockerfile[] = [];
export let dockerFiles:Dockerfile[] = [];
2016-06-19 00:30:50 +00:00
export let config;
2016-06-05 21:53:01 +00:00
export let configStore = () => {
2016-06-07 10:36:00 +00:00
let config = {
dockerRegistry: dockerRegistry,
dockerFilesBuilt: dockerFilesBuilt,
dockerFiles: dockerFiles
}
2016-06-05 21:53:01 +00:00
plugins.smartfile.memory.toFsSync(
JSON.stringify(config),
{
fileName:"config.json",
filePath:paths.NpmciPackageRoot
}
);
}
2016-06-19 00:30:50 +00:00
let configLoad = () => {
// internal config to transfer information in between npmci shell calls
2016-06-05 21:53:01 +00:00
try {
2016-06-23 20:22:03 +00:00
config = plugins.smartfile.fs.toObjectSync(paths.NpmciPackageConfig,"json");
2016-06-05 21:53:01 +00:00
}
catch(err){
config = {};
configStore();
2016-06-07 10:36:00 +00:00
plugins.beautylog.log("config initialized!");
2016-06-05 21:53:01 +00:00
}
2016-06-19 00:30:50 +00:00
// project config
try {
if(!config.project){
2016-06-23 20:22:03 +00:00
config.project = plugins.smartfile.fs.toObjectSync(paths.NpmciProjectDir,"npmci.json");
2016-06-19 00:30:50 +00:00
plugins.beautylog.ok("project config found!");
};
}
catch(err){
config.project = {};
plugins.beautylog.log("no project config found, so proceeding with default behaviour!");
}
2016-06-05 21:53:01 +00:00
config.dockerRegistry ? dockerRegistry = config.dockerRegistry : void(0);
config.dockerFilesBuilt ? dockerFilesBuilt = config.dockerFilesBuilt : void(0);
}
2016-06-05 21:53:01 +00:00
configLoad();