ci: target the macOS runner by label name macos (not macos:host)
In act_runner a label is `<name>:<backend>`; `:host` is the execution- backend schema (run on host, no container), not part of the label. The runner registered as `macos:host` therefore has the label `macos`, which is what runs-on must reference.
This commit is contained in:
@@ -19,7 +19,10 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
probe:
|
probe:
|
||||||
runs-on: "macos:host"
|
# Label NAME only. The runner was registered as `macos:host`, but `:host` is
|
||||||
|
# act_runner's execution-backend schema (run on the host, no container), not
|
||||||
|
# part of the label — so the label is just `macos`.
|
||||||
|
runs-on: macos
|
||||||
steps:
|
steps:
|
||||||
- name: identity, SDK, toolchains
|
- name: identity, SDK, toolchains
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user