import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface JobBuildPackageOptions { output: string; workspaceRoot: string; cwd: string; identity: Identity; namespace: string; head: string | null; } /** * 旧版构建流程 job * 旧版流程基于自建 scm 系统,在构建包时,需要把源码同时进行打包 * 源码会被输出到 source 目录中 * @param options */ export default function jobScmBuild(options: JobBuildPackageOptions): Promise;