assignUser commented on code in PR #38195:
URL: https://github.com/apache/arrow/pull/38195#discussion_r1357003833
##########
dev/tasks/r/github.packages.yml:
##########
@@ -375,29 +375,30 @@ jobs:
read_parquet(system.file("v0.7.1.parquet", package = "arrow"))
print(arrow_info())
- #TODO test macos source build?
- test-linux-source:
+ test-source:
needs: source
- name: Test linux source build
- runs-on: ubuntu-latest
+ name: Test {{ '${{ matrix.platform.name }}' }} source build
+ runs-on: {{ '${{ matrix.platform.runs_on }}' }}
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - {runs_on: "ubuntu-latest", name: "Linux"}
+ - {runs_on: ["self-hosted", "macos-10.13"] , name: "macOS"}
Review Comment:
This is just one machine, the 10.13 runner but self-hosted runners can be
identified by multiple tags that are group in an array. For example we have
both linux and macos arm64 runners so we have to use `["self-hosted", "arm64",
"macos"]` for the m1. Adding "self-hosted" is recommended by gh and the default
tag all self-hosted runners have to avoid any collision with official runners.
See
https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/using-self-hosted-runners-in-a-workflow#using-default-labels-to-route-jobs
for details.
--
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]