From 731913eef5598f3920c93297238926d2152db9dd Mon Sep 17 00:00:00 2001 From: Jerry Zhang Jian Date: Thu, 24 Oct 2024 11:25:56 -0700 Subject: [PATCH] ci: exp 3 shells Signed-off-by: Jerry Zhang Jian --- .github/workflows/clang-compilation.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang-compilation.yml b/.github/workflows/clang-compilation.yml index 1fe34913e..14b866bd5 100644 --- a/.github/workflows/clang-compilation.yml +++ b/.github/workflows/clang-compilation.yml @@ -83,9 +83,22 @@ jobs: ninja working-directory: llvm-project - - name: Test + - name: Test1 shell: 'script --return --quiet --log-out /dev/null --command "bash -e {0}"' - # shell: bash + run: | + make -C rvv-intrinsic-generator run-vector-crypto-api-testing SHELL="bash -x" + continue-on-error: true + working-directory: rvv-intrinsic-doc + + - name: Test2 + shell: 'script -q -e -c "bash --noprofile --norc -eo pipefail {0}"' + run: | + make -C rvv-intrinsic-generator run-vector-crypto-api-testing SHELL="bash -x" + continue-on-error: true + working-directory: rvv-intrinsic-doc + + - name: Test3 + shell: script -q -e -c "$(printf "'%s' " "$@")" run: | make -C rvv-intrinsic-generator run-vector-crypto-api-testing SHELL="bash -x" continue-on-error: true