Complete rewrite and re-architecture Osmedeus Engine in v5

This commit is contained in:
j3ssie
2026-01-18 19:32:24 +08:00
commit 7a2c5a5dc9
743 changed files with 99767 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
name: test-parallel-steps
kind: module
description: Test nested parallel steps with mixed types
tags: test,parallel,nested
params:
- name: target
required: true
steps:
- name: setup
type: bash
command: mkdir -p /tmp/parallel-steps-test
- name: nested-parallel
type: parallel-steps
parallel_steps:
- name: sub-step-1
type: bash
command: 'echo "sub 1: {{target}}" > /tmp/parallel-steps-test/sub1.txt'
- name: sub-step-2
type: bash
command: 'echo "sub 2: {{target}}" > /tmp/parallel-steps-test/sub2.txt'
- name: sub-step-3
type: function
function: 'trim(" nested ")'
- name: verify-files
type: function
function: fileExists("/tmp/parallel-steps-test/sub1.txt")
exports:
file_exists: "output"
- name: cleanup
type: bash
command: rm -rf /tmp/parallel-steps-test