Replies: 2 comments
-
I've encountered this problem as well. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Are you trying to run your job on 2 different runners at the same time? I dont think that is supported |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to create arm64 and amd64 platform-specific runners in order to get fast native builds. When I try to use
runs-on: [self-hosted, amd64]
the job sits pending forever. When I use just one label it schedules correctly, e.g.,runs-on: [amd64]
.My runners:
and
the kube node labels are setup correct, I have those nodegroups in EKS labeled with the correct
arch
andpurpose
labels and then I have the taints on there as well.And this workflow schedules fine:
but this one waits in the queue forever:
and interestingly enough, with just
run-on: [self-hosted]
the pipeline does not schedule, even with a bunch of idle runners registered to github with theself-hosted
label:Beta Was this translation helpful? Give feedback.
All reactions