Skip to content

Commit

Permalink
Error when no supported stds available.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Sep 19, 2024
1 parent 95f6e95 commit 32ba30a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/workflow-build/build-workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,8 @@ def lookup_supported_stds(matrix_job):
if 'project' in matrix_job:
project = get_project(matrix_job['project'])
stds = stds & set(project['stds'])
if len(stds) == 0:
raise Exception(error_message_with_matrix_job(matrix_job, "No supported stds found."))
return sorted(list(stds))


Expand Down

0 comments on commit 32ba30a

Please sign in to comment.