Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/assets/YAML/default/BuildAndDeployment/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Build and Deployment:
time: 2
resources: 2
usefulness: 2
level: 2
# level: 2 (removed to test exit code bug)
implementation:
- $ref: src/assets/YAML/default/implementations.yaml#/implementations/ci-cd-tools
- $ref: src/assets/YAML/default/implementations.yaml#/implementations/container-technology
Expand Down
10 changes: 0 additions & 10 deletions yaml-generation/generateDimensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,6 @@
}


// Post-process to add activity name as comment for `dependsOn`
$dimensionsString = yaml_emit($dimensionsAggregated);
preg_match_all('/\{!([0-9a-z-]{30,})!\}/', $dimensionsString, $matches);
$uuids = array_unique($matches[1]);
foreach ($uuids as $uuid) {
$name = getActivityNameByUuid($uuid, $dimensionsAggregated);
// echo "Adding dependsOn-comment for $uuid: $name\n";
$dimensionsString = str_replace("'{!$uuid!}'", "$uuid # $name", $dimensionsString);
}

// Store generated data with meta document first
$metaDocument = array(
'meta' => array(
Expand Down