diff options
-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 |