Skip to content
Discussion options

You must be logged in to vote

Hey! Frustrating issue with your GitHub Actions workflow queuing forever—looks like the root cause is an invalid runner label in your YAML: "ubuntu-15" isn't supported (GitHub offers ubuntu-latest, ubuntu-22.04, or ubuntu-20.04). That's why no runner gets assigned, leading to the 24-hour timeout.

Quick fix: Update the matrix to use a valid one, e.g.:

matrix:
include:
- arch: x64
runs_on: ubuntu-latest # or ubuntu-22.04
...

Commit/push, then trigger the workflow again—it should pick up a runner immediately.

Bonus: Your matrix has blender_version: "1.1.2" but the script downloads 4.5.2—sync those if needed to avoid build mismatches.

If it still hangs (rare, but possible cache glitch), cance…

Replies: 3 comments

This comment was marked as off-topic.

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD Question Ask and answer questions about GitHub features and usage Misc General discussions about GitHub Actions that don't fit other found themes.
4 participants