Skip to content

Commit

Permalink
fix workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed May 28, 2024
1 parent fdea5a8 commit 66de945
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions dev/tasks/matlab/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,15 @@ jobs:
path: matlab-arrow-ubuntu.tar.gz

macos:
name: {{ '${{ matrix.architecture }}' }} macOS {{ '${{ matrix.macos-version }}' }} MATLAB
runs-on: macos-$${{ matrix.macos-version }}
{% set arch = '${{ matrix.platform.architecture}}' %}
{% set macos-version = '${{ matrix.platform.macos-version}}' %}
name: {{ arch }} macOS {{ macos-version }} MATLAB
runs-on: macos-{{ macos-version }}
strategy:
matrix:
include:
- architecture: AMD64
macos-version: "12"
architecture-suffix: x64
- architecture: ARM64
macos-version: "14"
architecture-suffix: arm64
platform:
- { architecture: "AMD64", macos-version: "12", architecture-suffix: "x64"}
- { architecture: "ARM64", macos-version: "14", architecture-suffix: "arm64"}
steps:
{{ macros.github_checkout_arrow()|indent }}
- name: Install ninja-build
Expand Down

0 comments on commit 66de945

Please sign in to comment.