From 100c3ae77ac7fa4a33ecf738e0f4f1afc6b6cde1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Test=C3=A9?= Date: Mon, 25 Nov 2024 10:37:26 +0100 Subject: [PATCH] chore(ci): fix gpu multi values ops flavor parsing --- .github/workflows/benchmark_gpu_integer_common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark_gpu_integer_common.yml b/.github/workflows/benchmark_gpu_integer_common.yml index c0521330b8..063640c270 100644 --- a/.github/workflows/benchmark_gpu_integer_common.yml +++ b/.github/workflows/benchmark_gpu_integer_common.yml @@ -83,7 +83,7 @@ jobs: - name: Set multiple operations flavors if: ${{ contains(inputs.op_flavor, ',')}} run: | - PARSED_OP_FLAVOR=$(echo "${{ inputs.op_flavor }}" | sed 's/[[:space:]]*,[[:space:]]*/\\", \\"/g') + PARSED_OP_FLAVOR=$(echo "${{ inputs.op_flavor }}" | sed 's/[[:space:]]*,[[:space:]]*/", "/g') echo "OP_FLAVOR=[\"${PARSED_OP_FLAVOR}\"]" >> "${GITHUB_ENV}" - name: Set benchmark types