You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am encountering an issue (while creating this PR), specifically when configuring a GitHub Actions workflow matrix that includes macOS-15. Adding macOS-15 to the matrix causes the workflow to fail in evaluating the runs-on property, resulting in the following error:
Error when evaluating 'runs-on' for job 'build_and_test'. .github/workflows/macos.yml (Line: 40, Col: 14): Unexpected value ''
This issue does not occur when macOS-15 is excluded from the matrix.
Workflow Configuration
Here is the relevant snippet (whole workflow can be found here) of the GitHub Actions workflow:
I tested both workflows you provided and found that the issue seems to be with the tags you're using for macOS 15 images. The matrix.os value is missing or mismatched in the include or exclude lists. The correct tags should be macos-15-large (intel) and macos-15-xlarge (arm64).
I've verified the workflows using macos-15-large (intel) and macos-15-xlarge (arm64), and they are working fine on my end. I've attached screenshots of Yaml and runs for reference. Please check from your side and let me know if you need further assistance.
As it is public repo I noticed that you've used the tags mentioned above in some of your workflows, and now the error has changed. It appears to be related to the compilation of fiction.cpp, which seems to be tied to the application's configuration. Kindly let us know if you are still encountering the same issue for which this ticket was logged.
Thank you.
Description
Description
I am encountering an issue (while creating this PR), specifically when configuring a GitHub Actions workflow matrix that includes macOS-15. Adding macOS-15 to the matrix causes the workflow to fail in evaluating the
runs-on
property, resulting in the following error:This issue does not occur when macOS-15 is excluded from the matrix.
Workflow Configuration
Here is the relevant snippet (whole workflow can be found here) of the GitHub Actions workflow:
Platforms affected
Runner images affected
Image version and build link
https://github.com/cda-tum/fiction/actions/runs/12647205220/workflow
Is it regression?
https://github.com/cda-tum/fiction/actions/runs/12261209867
Expected behavior
The workflow should execute with macOS-15 in the matrix, just like it does with macOS-13 and macOS-14.
Actual behavior
When macOS-15 is included in the matrix, the workflow fails with the error message mentioned above. Removing macOS-15 resolves the issue.
Repro steps
os
matrix in the workflow configuration.runs-on
property.The text was updated successfully, but these errors were encountered: