Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom CI to run mutation testing completely manually by users from a given team #50

Merged
merged 13 commits into from
Aug 16, 2024
Merged
Prev Previous commit
Next Next commit
feat: update used input name from automated to ignore_timeout
  • Loading branch information
ASuciuX committed Aug 13, 2024
commit 1df365fa953d22083f829134268e38d7c66d9d52
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ runs:

# If there are mutants from stackslib package, check whether to run or not and with or without shards
if [[ $number_of_stackslib_mutants -ne 0 ]]; then
if [[ "${{ inputs.automated }}" != "false" && $number_of_stackslib_mutants -gt 72 ]]; then
if [[ "${{ inputs.ignore_timeout }}" != "true" && $number_of_stackslib_mutants -gt 72 ]]; then
stackslib_too_many_mutants=true
echo "run_stackslib=false" >> "$GITHUB_OUTPUT"
echo "stackslib_with_shards=false" >> "$GITHUB_OUTPUT"
Expand All @@ -207,7 +207,7 @@ runs:

# If there are mutants from stacks-node package, check whether to run or not and with or without shards
if [[ $number_of_stacks_node_mutants -ne 0 ]]; then
if [[ "${{ inputs.automated }}" != "false" && $number_of_stacks_node_mutants -gt 540 ]]; then
if [[ "${{ inputs.ignore_timeout }}" != "true" && $number_of_stacks_node_mutants -gt 540 ]]; then
stacks_node_too_many_mutants=true
echo "run_stacks_node=false" >> "$GITHUB_OUTPUT"
echo "stacks_node_with_shards=false" >> "$GITHUB_OUTPUT"
Expand Down