Skip to content

Commit

Permalink
apacheGH-41390: [CI] Use setup-python GitHub action on csharp macOS j…
Browse files Browse the repository at this point in the history
…ob (apache#41392)

### Rationale for this change

The new macos-latest GH runner has changed and jobs are currently failing.

### What changes are included in this PR?

Install python with setup-python.

### Are these changes tested?

Will be on CI

### Are there any user-facing changes?
No
* GitHub Issue: apache#41390

Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
raulcd authored Apr 26, 2024
1 parent 0f56339 commit 15986ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
run: ci/scripts/csharp_test.sh $(pwd)

macos:
name: AMD64 macOS 11 C# ${{ matrix.dotnet }}
name: ARM64 macOS 14 C# ${{ matrix.dotnet }}
runs-on: macos-latest
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
timeout-minutes: 15
Expand All @@ -107,6 +107,10 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Setup Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: 3.12
- name: Checkout Arrow
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 15986ae

Please sign in to comment.