Skip to content

DON'T MERGE: test #214

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
20 changes: 14 additions & 6 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Docker Publish

on:
pull_request:
branches: [ "main" ]
push:
branches: [ main ]
tags:
Expand All @@ -18,13 +20,17 @@ jobs:
# TODO: rewrite asyncio_reduce example using latest SDK version, as it is currently using old methods
# then add to example_directories matrix
example_directories: [
"examples/map/even_odd", "examples/map/flatmap", "examples/map/forward_message",
"examples/map/multiproc_map", "examples/mapstream/flatmap_stream", "examples/reduce/counter",
"examples/reducestream/counter", "examples/reducestream/sum", "examples/sideinput/simple_sideinput",
"examples/sideinput/simple_sideinput/udf", "examples/sink/async_log", "examples/sink/log",
"examples/source/simple_source", "examples/sourcetransform/event_time_filter",
"examples/batchmap/flatmap"
"examples/map/even_odd"
]
# example_directories: [
# "examples/map/even_odd", "examples/map/flatmap", "examples/map/forward_message",
# "examples/map/multiproc_map", "examples/mapstream/flatmap_stream", "examples/reduce/counter",
# "examples/reducestream/counter", "examples/reducestream/sum", "examples/sideinput/simple_sideinput",
# "examples/sideinput/simple_sideinput/udf", "examples/sink/async_log", "examples/sink/log",
# "examples/source/simple_source", "examples/sourcetransform/event_time_filter",
# "examples/batchmap/flatmap"
# ]


steps:
- name: Check out repository
Expand All @@ -38,6 +44,8 @@ jobs:
pip install poetry
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:qemu-v7.0.0-28
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io registry
Expand Down
2 changes: 1 addition & 1 deletion examples/batchmap/flatmap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV PYTHONFAULTHANDLER=1 \
PIP_NO_CACHE_DIR=on \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100 \
POETRY_VERSION=1.2.2 \
POETRY_VERSION=2.0.1 \
POETRY_HOME="/opt/poetry" \
POETRY_VIRTUALENVS_IN_PROJECT=true \
POETRY_NO_INTERACTION=1 \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pynumaflow"
version = "0.9.0"
version = "0.9.1"
description = "Provides the interfaces of writing Python User Defined Functions and Sinks for NumaFlow."
authors = ["NumaFlow Developers"]
readme = "README.md"
Expand Down
Loading