mirror of https://github.com/citusdata/citus.git
Use failtester for flakyness detection (#6569)
We need failtester image to run failure tests in flakiness detection workflow.pull/6571/head
parent
303db172f8
commit
497a7589d0
|
@ -579,7 +579,7 @@ jobs:
|
||||||
image:
|
image:
|
||||||
description: 'docker image to use as for the tests'
|
description: 'docker image to use as for the tests'
|
||||||
type: string
|
type: string
|
||||||
default: citus/exttester
|
default: citus/failtester
|
||||||
image_tag:
|
image_tag:
|
||||||
description: 'docker image tag to use'
|
description: 'docker image tag to use'
|
||||||
type: string
|
type: string
|
||||||
|
@ -615,7 +615,7 @@ jobs:
|
||||||
testForDebugging="<< parameters.test >>"
|
testForDebugging="<< parameters.test >>"
|
||||||
|
|
||||||
if [ -z "$testForDebugging" ]; then
|
if [ -z "$testForDebugging" ]; then
|
||||||
detected_changes=$(git diff origin/HEAD --name-only --diff-filter=AM | (grep 'src/test/regress/sql/.*.sql\|src/test/regress/spec/.*.spec' || true))
|
detected_changes=$(git diff origin/main... --name-only --diff-filter=AM | (grep 'src/test/regress/sql/.*.sql\|src/test/regress/spec/.*.spec' || true))
|
||||||
tests=${detected_changes}
|
tests=${detected_changes}
|
||||||
else
|
else
|
||||||
tests=$testForDebugging;
|
tests=$testForDebugging;
|
||||||
|
|
Loading…
Reference in New Issue