mirror of https://github.com/citusdata/citus.git
Fix make recipe mapping in test runner (#6561)
parent
8be4ce546e
commit
556161be32
|
@ -3,6 +3,8 @@ name: Build tests in packaging images
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: "**"
|
branches: "**"
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened,synchronize]
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
|
@ -98,7 +98,7 @@ with open(tmp_schedule_path, "a") as myfile:
|
||||||
# find suitable make recipe
|
# find suitable make recipe
|
||||||
if "isolation" in test_schedule:
|
if "isolation" in test_schedule:
|
||||||
make_recipe = 'check-isolation-custom-schedule'
|
make_recipe = 'check-isolation-custom-schedule'
|
||||||
if "failure" in test_schedule:
|
elif "failure" in test_schedule:
|
||||||
make_recipe = 'check-failure-custom-schedule'
|
make_recipe = 'check-failure-custom-schedule'
|
||||||
else:
|
else:
|
||||||
make_recipe = 'check-custom-schedule'
|
make_recipe = 'check-custom-schedule'
|
||||||
|
|
Loading…
Reference in New Issue