From 74f333885b2a94d6b92b5174db5ef51426ab6114 Mon Sep 17 00:00:00 2001 From: Gregory Foster Date: Sun, 26 Nov 2023 11:15:48 -0800 Subject: [PATCH] #143: changing cml runner syntax to multi-line, single-command (#144) --- .../.github/workflows/event-gather-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml b/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml index 24f3fef0..03caa661 100644 --- a/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml +++ b/{{ cookiecutter.hosting_github_repo_name }}/.github/workflows/event-gather-pipeline.yml @@ -37,7 +37,7 @@ jobs: timeout_minutes: {{ cookiecutter.event_gather_runner_timeout_minutes }} max_attempts: {{ cookiecutter.event_gather_runner_max_attempts }} retry_wait_seconds: {{ cookiecutter.event_gather_runner_retry_wait_seconds }} - command: | + command: >- cml runner \ --single \ --labels=gcp-cdp-runner \ @@ -46,7 +46,7 @@ jobs: --cloud-type=n1-standard-4 \ --cloud-gpu=nvidia-tesla-t4 \ --cloud-hdd-size=30 \ - --idle-timeout=600 \ + --idle-timeout=600 process-events: needs: [deploy-runner-on-gcp]