Fix make recipe mapping in test runner (#6561)

poc/tenant-attribute-cpu
Gokhan Gulbiz 2022-12-14 12:57:13 +03:00 committed by GitHub
parent 8be4ce546e
commit 556161be32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@ name: Build tests in packaging images
on:
push:
branches: "**"
pull_request:
types: [opened, reopened,synchronize]
workflow_dispatch:

View File

@ -98,7 +98,7 @@ with open(tmp_schedule_path, "a") as myfile:
# find suitable make recipe
if "isolation" in test_schedule:
make_recipe = 'check-isolation-custom-schedule'
if "failure" in test_schedule:
elif "failure" in test_schedule:
make_recipe = 'check-failure-custom-schedule'
else:
make_recipe = 'check-custom-schedule'