Skip to content

Commit dab6e48

Browse files
committed
add to all
Signed-off-by: Sidhant Kohli <sidhant.kohli@gmail.com>
1 parent a82afc7 commit dab6e48

File tree

15 files changed

+19
-8
lines changed

15 files changed

+19
-8
lines changed

.github/workflows/build-push.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,13 @@ jobs:
2020
# TODO: rewrite asyncio_reduce example using latest SDK version, as it is currently using old methods
2121
# then add to example_directories matrix
2222
example_directories: [
23+
"examples/map/even_odd", "examples/map/flatmap", "examples/map/forward_message",
24+
"examples/map/multiproc_map", "examples/mapstream/flatmap_stream", "examples/reduce/counter",
25+
"examples/reducestream/counter", "examples/reducestream/sum", "examples/sideinput/simple_sideinput",
26+
"examples/sideinput/simple_sideinput/udf", "examples/sink/async_log", "examples/sink/log",
27+
"examples/source/simple_source", "examples/sourcetransform/event_time_filter",
2328
"examples/batchmap/flatmap"
2429
]
25-
# example_directories: [
26-
# "examples/map/even_odd", "examples/map/flatmap", "examples/map/forward_message",
27-
# "examples/map/multiproc_map", "examples/mapstream/flatmap_stream", "examples/reduce/counter",
28-
# "examples/reducestream/counter", "examples/reducestream/sum", "examples/sideinput/simple_sideinput",
29-
# "examples/sideinput/simple_sideinput/udf", "examples/sink/async_log", "examples/sink/log",
30-
# "examples/source/simple_source", "examples/sourcetransform/event_time_filter",
31-
# "examples/batchmap/flatmap"
32-
# ]
3330

3431
steps:
3532
- name: Check out repository

examples/map/even_odd/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/flatmap/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/forward_message/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/map/multiproc_map/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/mapstream/flatmap_stream/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reduce/counter/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reducestream/counter/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/reducestream/sum/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

examples/sideinput/simple_sideinput/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ WORKDIR $PYSETUP_PATH
4343
COPY ./ ./
4444

4545
WORKDIR $EXAMPLE_PATH
46+
RUN poetry lock
4647
RUN poetry install --no-cache --no-root && \
4748
rm -rf ~/.cache/pypoetry/
4849

0 commit comments

Comments
 (0)