@jin7942/ray
Version:
Lightweight CI/CD deployment tool powered by Docker and Git
15 lines (14 loc) • 502 B
TypeScript
import { Config } from './_types/config';
/**
* Runs the full CI/CD pipeline for a single project.
* Internally converts Config into StepContext and executes all stages.
*
* @param config - The project configuration object
*/
export declare function runRayPipeline(config: Config): Promise<void>;
/**
* Runs the full pipeline for multiple projects sequentially.
*
* @param configs - Array of project configurations
*/
export declare function runAllPipelines(configs: Config[]): Promise<void>;