diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-09-27 11:59:29 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-09-27 14:39:59 +0900 |
commit | e58c7a9330e90df3e94352d7fa9c33533a989eaf (patch) | |
tree | a7d56ff4c760a24b5d5b8799c0bed4692b792e05 | |
parent | 52bb90f92d9ebc8c06d1adf364b0e55c746c46b2 (diff) |
Applied https://github.com/ruby/ruby/pull/11574
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11217
-rwxr-xr-x | .github/actions/compilers/entrypoint.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/actions/compilers/entrypoint.sh b/.github/actions/compilers/entrypoint.sh index 8e5b93f399..0a11ef9cc1 100755 --- a/.github/actions/compilers/entrypoint.sh +++ b/.github/actions/compilers/entrypoint.sh @@ -84,7 +84,13 @@ grouped make test [[ -z "${INPUT_CHECK}" ]] && exit 0 +if [ "$INPUT_CHECK" = "true" ]; then + tests="ruby -ext-" +else + tests="$INPUT_CHECK" +fi + grouped make install grouped make test-tool -grouped make test-all TESTS='-- ruby -ext-' +grouped make test-all TESTS="-- $tests" grouped env CHECK_LEAKS=true make test-spec |