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 66de945 commit 2f94adb
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions dev/tasks/matlab/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ jobs:

macos:
{% set arch = '${{ matrix.platform.architecture}}' %}
{% set macos-version = '${{ matrix.platform.macos-version}}' %}
name: {{ arch }} macOS {{ macos-version }} MATLAB
runs-on: macos-{{ macos-version }}
name: {{ arch }} macOS MATLAB
runs-on: macos-{{ '${{ matrix.platform.macos-version }}' }}
strategy:
matrix:
platform:
Expand All @@ -84,14 +83,14 @@ jobs:
run: |
arrow/dev/tasks/matlab/rename_macos_dynamic_libraries.sh \
arrow/matlab/install/arrow_matlab/+libmexclass/+proxy \
{{ '${{ matrix.architecture-suffix }}' }}
{{ '${{ matrix.platform.architecture-suffix }}' }}
- name: Compress into single artifact
run: tar -cvzf matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz arrow/matlab/install/arrow_matlab
run: tar -cvzf matlab-arrow-macos-{{ '${{ matrix.platform.architecture-suffix }}' }}.tar.gz arrow/matlab/install/arrow_matlab
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz
path: matlab-arrow-macos-{{ '${{ matrix.architecture-suffix }}' }}.tar.gz
name: matlab-arrow-macos-{{ '${{ matrix.platform.architecture-suffix }}' }}.tar.gz
path: matlab-arrow-macos-{{ '${{ matrixplatform.architecture-suffix }}' }}.tar.gz

windows:
name: AMD64 Windows 2022 MATLAB
Expand Down

0 comments on commit 2f94adb

Please sign in to comment.