Skip to content

Commit 74ab7ed

Browse files
committed
chore: Use durabletask-go as sidecar
Signed-off-by: Javier Aliaga <[email protected]>
1 parent 5094800 commit 74ab7ed

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-validation.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,15 @@ jobs:
7373
if: env.UNIT_TEST_FAILED == 'true'
7474
run: exit 1
7575

76+
- name: Checkout Durable Task Sidecar
77+
uses: actions/checkout@v4
78+
with:
79+
repository: dapr/durabletask-go/
80+
path: durabletask-sidecar
81+
7682
# TODO: Move the sidecar into a central image repository
7783
- name: Initialize Durable Task Sidecar
78-
run: docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' -d peterstone2019/durabletask-sidecar:latest start --backend Emulator
84+
run: docker run --name durabletask-sidecar -p 4001:4001 --rm -it $(docker build -q ./durabletask-sidecar)
7985

8086
- name: Display Durable Task Sidecar Logs
8187
run: nohup docker logs --since=0 durabletask-sidecar > durabletask-sidecar.log 2>&1 &

0 commit comments

Comments
 (0)