Skip to content

Commit 93f590d

Browse files
committed
Add buildscenario to buildconfig
1 parent 46419b8 commit 93f590d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
from typing import Optional, List
21
from dataclasses import dataclass
2+
from typing import List, Optional
3+
4+
from .build_context import BuildScenario
35

46

57
@dataclass
68
class BuildConfiguration:
7-
image_type: str
9+
scenario: BuildScenario
10+
version: str
811
base_registry: str
912

1013
parallel: bool = False
1114
parallel_factor: int = 0
1215
architecture: Optional[List[str]] = None
1316
sign: bool = False
1417
all_agents: bool = False
15-
16-
pipeline: bool = True
1718
debug: bool = True

0 commit comments

Comments
 (0)