Skip to content

Commit 65f5546

Browse files
kevingurneyrok
authored andcommitted
apacheGH-41370: [CI][MATLAB] MATLAB macOS CI workflow fails because of macos-latest change to macos-14 (apache#41384)
### Rationale for this change * The MATLAB macOS CI workflow is failing because of the recent change to `macos-latest` from `macos-12` to `macos-14`. * In https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/ it is mentioned that the transition to `macos-14` was planned for April-June 2024. * As noted in the [Platform Road Map](https://www.mathworks.com/support/requirements/platform-road-map.html), MATLAB R2023a is not officially supported with `macos-14`. * Until we can move to building against MATLAB R2024a (latest available version of MATLAB), it makes sense to pin back the macOS version to version 14. ### What changes are included in this PR? 1. Pin back MATLAB CI workflow to use `macos-12`. 2. Pin back MATLAB crossbow packaging workflow to use `macos-12`. ### Are these changes tested? I will run a crossbow job and ensure that the MATLAB CI workflow passes successfully before merging this PR. ### Are there any user-facing changes? No. ### Future Directions 1. apache#41385 ### Notes 1. Thanks @ sgilmore10 for your help with this pull request! * GitHub Issue: apache#41370 Authored-by: Kevin Gurney <kgurney@mathworks.com> Signed-off-by: Kevin Gurney <kgurney@mathworks.com>
1 parent d683d23 commit 65f5546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/matlab.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
strict: true
100100
macos:
101101
name: AMD64 macOS 12 MATLAB
102-
runs-on: macos-latest
102+
runs-on: macos-12
103103
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
104104
steps:
105105
- name: Check out repository

dev/tasks/matlab/github.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
macos:
6262
name: AMD64 macOS 12 MATLAB
63-
runs-on: macos-latest
63+
runs-on: macos-12
6464
steps:
6565
{{ macros.github_checkout_arrow()|indent }}
6666
- name: Install ninja-build

0 commit comments

Comments
 (0)