Skip to content

Commit f529124

Browse files
authored
Merge pull request #12 from zenml-io/feature/renamedirstopipelines
Refactor pipeline directory structure and filenames
2 parents 91c64ce + 4af9e65 commit f529124

34 files changed

+46
-36
lines changed

.github/workflows/test-pipelines.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ jobs:
4141
run: |
4242
failed=()
4343
for p in \
44-
"pipelines/helloWorld/hello_pipeline.py" \
45-
"pipelines/caching/cache_pipeline.py" \
46-
"pipelines/fanOut/fan_pipeline.py" \
47-
"pipelines/metadata/meta_pipeline.py" \
48-
"pipelines/parameters/param_pipeline.py" \
49-
"pipelines/retries/robust_pipeline.py" \
50-
"pipelines/stepIO/io_pipeline.py" \
51-
"pipelines/tagging/tagged_pipeline.py" \
52-
"pipelines/visualizations/viz_pipeline.py" \
53-
"pipelines/yamlConfig/yaml_pipeline.py"; do
44+
"pipelines/hello_pipeline/hello_pipeline.py" \
45+
"pipelines/cache_pipeline/cache_pipeline.py" \
46+
"pipelines/fan_pipeline/fan_pipeline.py" \
47+
"pipelines/meta_pipeline/meta_pipeline.py" \
48+
"pipelines/param_pipeline/param_pipeline.py" \
49+
"pipelines/robust_pipeline/robust_pipeline.py" \
50+
"pipelines/io_pipeline/io_pipeline.py" \
51+
"pipelines/tagged_pipeline/tagged_pipeline.py" \
52+
"pipelines/viz_pipeline/viz_pipeline.py" \
53+
"pipelines/yaml_pipeline/yaml_pipeline.py"; do
5454
5555
echo "Running $p…"
56-
if [[ "$p" == *"retries/robust_pipeline.py" ]]; then
56+
if [[ "$p" == *"robust_pipeline/robust_pipeline.py" ]]; then
5757
PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH python "$p" || echo "⚠ robust_pipeline demo: failure expected"
5858
else
5959
PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH python "$p" || failed+=("$p")
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Demonstrates smart caching to save time on re-runs by skipping unchanged steps
File renamed without changes.
File renamed without changes.

pipelines/fan_pipeline/summary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Demonstrates parallel processing workflows using fan-out and fan-in patterns
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A basic ZenML pipeline that demonstrates the fundamentals of steps and pipelines by outputting "Hello World!"

0 commit comments

Comments
 (0)