ci: pass target from build stage to unit test

This commit is contained in:
Michael (XIAO Xufeng)
2019-08-22 16:45:25 +08:00
committed by Angus Gratton
parent 4558824150
commit 3a9ae4acc6
4 changed files with 43 additions and 13 deletions

View File

@@ -233,7 +233,7 @@ class AssignTest(object):
else:
failed_to_assign.append(group)
if failed_to_assign:
console_log("Too many test cases vs jobs to run. Please add the following jobs to .gitlab-ci.yml with specific tags:", "R")
console_log("Too many test cases vs jobs to run. Please add the following jobs to tools/ci/config/target-test.yml with specific tags:", "R")
for group in failed_to_assign:
console_log("* Add job with: " + ",".join(group.ci_job_match_keys), "R")
raise RuntimeError("Failed to assign test case to CI jobs")