From d7aec58370f67a0f8a0f6984a03ed75e6b3e1b2f Mon Sep 17 00:00:00 2001 From: zhanghongtong Date: Thu, 4 Nov 2021 11:27:36 +0800 Subject: [PATCH] ci(relup): fix old vsn error Signed-off-by: zhanghongtong --- .github/workflows/run_fvt_tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_fvt_tests.yaml b/.github/workflows/run_fvt_tests.yaml index 2215b9188..80fced0e4 100644 --- a/.github/workflows/run_fvt_tests.yaml +++ b/.github/workflows/run_fvt_tests.yaml @@ -223,7 +223,7 @@ jobs: - name: Generate matrix id: generate-matrix run: | - matrix=$(echo -n "$OLD_VSNS" | jq -R -s -c 'split(" ")') + matrix=$(echo -n "$OLD_VSNS" | sed 's/ $//g' | jq -R -s -c 'split(" ")') echo "::set-output name=matrix::$matrix" relup_test_build: @@ -275,6 +275,7 @@ jobs: runs-on: ubuntu-20.04 container: emqx/relup-test-env:erl23.2.7.2-emqx-2-ubuntu20.04 strategy: + fail-fast: false matrix: old_vsn: ${{ fromJson(needs.relup_test_plan.outputs.matrix) }} env: