UNPKG

1.49 kBJavaScriptView Raw
1"use strict";
2/*
3 * Copyright © 2019 Atomist, Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17Object.defineProperty(exports, "__esModule", { value: true });
18const sdm_1 = require("@atomist/sdm");
19/**
20 * Default progress tests for our Docker builds
21 * @type {{test: RegExp; phase: string}[]}
22 */
23exports.DockerProgressTests = [{
24 test: /Invoking goal hook: pre/i,
25 phase: "pre-hook",
26 }, {
27 test: /docker 'build'/i,
28 phase: "docker build",
29 }, {
30 test: /docker 'push'/i,
31 phase: "docker push",
32 }, {
33 test: /Invoking goal hook: post/i,
34 phase: "post-hook",
35 }, {
36 test: /\/kaniko\/executor/i,
37 phase: "kaniko build",
38 }, {
39 test: /pushed blob sha256/i,
40 phase: "kaniko push",
41 }];
42/**
43 * Default ReportProgress for our Docker
44 */
45exports.DockerProgressReporter = sdm_1.testProgressReporter(...exports.DockerProgressTests);
46//# sourceMappingURL=DockerProgressReporter.js.map
\No newline at end of file