npmci/ts/npmci.env.ts

14 lines
431 B
TypeScript
Raw Normal View History

import "typings-global";
import * as plugins from "./npmci.plugins";
import {GitRepo} from "smartstring";
import {Dockerfile} from "./npmci.build.docker"
2016-06-05 19:11:30 +00:00
export let repo:GitRepo = new GitRepo(process.env.CI_BUILD_REPO);
export let buildStage:string = process.env.CI_BUILD_STAGE;
2016-06-03 01:44:24 +00:00
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[] = [];