@catladder/pipeline 1.62.0 → 1.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,6 +83,7 @@ var createCustomBuildJobs = function (context) {
83
83
  var appBuildJob = buildConfig.buildCommand !== null ? (0, createBuildJob_1.createBuildJob)(context, {
84
84
  image: buildConfig.jobImage,
85
85
  variables: __assign({}, RUNNER_BUILD_VARIABLES),
86
+ services: buildConfig.jobServices,
86
87
  script: __spreadArray([], __read((_a = (0, utils_1.ensureArray)(buildConfig.buildCommand)) !== null && _a !== void 0 ? _a : []), false),
87
88
  artifacts: {
88
89
  paths: __spreadArray([(0, path_1.join)(context.componentConfig.dir, "__build_info.json"), (0, path_1.join)(context.componentConfig.dir, "dist")], __read((_c = (_b = buildConfig.artifactsPaths) === null || _b === void 0 ? void 0 : _b.map(function (path) {
@@ -1,3 +1,4 @@
1
+ import type { GitlabJobService } from "../types";
1
2
  export declare type BuildConfigBase = {
2
3
  /**
3
4
  * command to run on the image to start the app (e.g. yarn start)
@@ -80,6 +81,7 @@ export declare type BuildConfigCustomDocker = BuildConfigBase["docker"] & ({
80
81
  export declare type BuildConfigCustom = BuildConfigBase & {
81
82
  type: "custom";
82
83
  jobImage: string;
84
+ jobServices?: GitlabJobService[];
83
85
  docker: BuildConfigCustomDocker;
84
86
  };
85
87
  export declare type BuildConfigStorybook = BuildConfigNodeBase & {