assignUser commented on code in PR #13350:
URL: https://github.com/apache/arrow/pull/13350#discussion_r893370142
##########
dev/tasks/verify-rc/github.macos.arm64.yml:
##########
@@ -22,7 +22,7 @@
jobs:
verify:
name: "Verify release candidate on macOS"
- runs-on: {{ github_runner|default("self-hosted") }}
+ runs-on: {{ github_runner|default(["self-hosted", "macOS", "arm64"]) }}
Review Comment:
```suggestion
runs-on: {{ github_runner|default('["self-hosted", "macOS", "arm64"]') }}
```
Should this not be quoted to be inserted verbatim?
##########
dev/tasks/verify-rc/github.macos.arm64.yml:
##########
@@ -22,7 +22,7 @@
jobs:
verify:
name: "Verify release candidate on macOS"
- runs-on: {{ github_runner|default("self-hosted") }}
+ runs-on: {{ github_runner|default(["self-hosted", "macOS", "arm64"]) }}
Review Comment:
Looks like it isn't strictly necessary
##########
dev/tasks/tasks.yml:
##########
@@ -1040,7 +1040,7 @@ tasks:
TEST_INTEGRATION_JAVA: 0
PYTEST_ADDOPTS: "-k 'not test_cancellation'"
target: {{ target }}
- github_runner: "self-hosted"
+ runs-on: ["self-hosted", "macOS", "arm64"]
Review Comment:
You renamed the param here, I guess that did not error because the template
has a default.
```suggestion
github_runner: '["self-hosted", "macOS", "arm64"]'
```
##########
dev/tasks/tasks.yml:
##########
@@ -1067,7 +1067,7 @@ tasks:
params:
env:
PYTEST_ADDOPTS: "-k 'not test_cancellation'"
- github_runner: "self-hosted"
+ runs-on: ["self-hosted", "macOS", "arm64"]
Review Comment:
Same here
```suggestion
github_runner: '["self-hosted", "macOS", "arm64"]'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]