From 4af36d871341ed82210cc18cf16da19c42c3426c Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Tue, 16 Jul 2024 15:54:14 +0200 Subject: [PATCH] Only run one command as multiple are not allowed --- .github/workflows/main-ci.yml | 2 +- scripts/run_ci.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 scripts/run_ci.sh diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index e90bac8..ed00bb2 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -25,5 +25,5 @@ jobs: time docker run \ -v $(realpath zenoh):/src \ -v $(realpath scripts):/scripts \ - -e "CI_COMMAND=/scripts/setup_host.sh && /scripts/test-zenoh.sh" \ + -e "CI_COMMAND=/scripts/run_ci.sh" \ ghcr.io/flba-eb/ebcl_cicd_template:main diff --git a/scripts/run_ci.sh b/scripts/run_ci.sh new file mode 100755 index 0000000..4b68199 --- /dev/null +++ b/scripts/run_ci.sh @@ -0,0 +1,4 @@ +#!/bin/sh -e + +/scripts/setup_host.sh +/scripts/test-zenoh.sh