Skip to content

Commit

Permalink
ci: exp 3 shells
Browse files Browse the repository at this point in the history
Signed-off-by: Jerry Zhang Jian <[email protected]>
  • Loading branch information
jerryzj committed Oct 24, 2024
1 parent 8aaa4fb commit 731913e
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/clang-compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 731913e

Please sign in to comment.