Skip to content

Commit

Permalink
1. Update MLTBX Toolbox Name to MATLAB Arrow Interface
Browse files Browse the repository at this point in the history
2. Update MLTBX filename to matlab-arrow-{version}.mltbx
3. Change tar filenames from arrow-matlab to matlab-arrow
  • Loading branch information
sgilmore10 committed Nov 16, 2023
1 parent e0f6339 commit e08319c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions dev/tasks/matlab/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
patchelf --replace-needed $SYMLINK_ARROW_LIB $REGULAR_ARROW_LIB libarrowproxy.so
popd
- name: Compress into single artifact to keep directory structure
run: tar -cvzf arrow-matlab-ubuntu.tar.gz arrow/matlab/install/arrow_matlab
run: tar -cvzf matlab-arrow-ubuntu.tar.gz arrow/matlab/install/arrow_matlab
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: arrow-matlab-ubuntu.tar.gz
path: arrow-matlab-ubuntu.tar.gz
name: matlab-arrow-ubuntu.tar.gz
path: matlab-arrow-ubuntu.tar.gz

macos:
name: AMD64 macOS 11 MATLAB
Expand All @@ -74,12 +74,12 @@ jobs:
install_name_tool -change @rpath/$SYMLINK_ARROW_LIB @rpath/$REGULAR_ARROW_LIB libarrowproxy.dylib
popd
- name: Compress into single artifact to keep directory structure
run: tar -cvzf arrow-matlab-macos.tar.gz arrow/matlab/install/arrow_matlab
run: tar -cvzf matlab-arrow-macos.tar.gz arrow/matlab/install/arrow_matlab
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: arrow-matlab-macos.tar.gz
path: arrow-matlab-macos.tar.gz
name: matlab-arrow-macos.tar.gz
path: matlab-arrow-macos.tar.gz

windows:
name: AMD64 Windows 2022 MATLAB
Expand All @@ -105,12 +105,12 @@ jobs:
bash -c "arrow/ci/scripts/matlab_build.sh $(pwd)/arrow"
- name: Compress into single artifact to keep directory structure
shell: bash
run: tar -cvzf arrow-matlab-windows.tar.gz arrow/matlab/install/arrow_matlab
run: tar -cvzf matlab-arrow-windows.tar.gz arrow/matlab/install/arrow_matlab
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: arrow-matlab-windows.tar.gz
path: arrow-matlab-windows.tar.gz
name: matlab-arrow-windows.tar.gz
path: matlab-arrow-windows.tar.gz

package-mltbx:
name: Package MATLAB Toolbox (MLTBX) Files
Expand All @@ -128,9 +128,9 @@ jobs:
- name: Decompress Artifacts
run: |
mv artifacts-downloaded/*/*.tar.gz .
tar -xzvf arrow-matlab-ubuntu.tar.gz
tar -xzvf arrow-matlab-macos.tar.gz
tar -xzvf arrow-matlab-windows.tar.gz
tar -xzvf matlab-arrow-ubuntu.tar.gz
tar -xzvf matlab-arrow-macos.tar.gz
tar -xzvf matlab-arrow-windows.tar.gz
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion matlab/tools/packageMatlabInterface.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

identifier = "ad1d0fe6-22d1-4969-9e6f-0ab5d0f12ce3";
opts = matlab.addons.toolbox.ToolboxOptions(toolboxFolder, identifier);
opts.ToolboxName = "MATLAB Interface to Arrow";
opts.ToolboxName = "MATLAB Arrow Interface";
opts.ToolboxVersion = toolboxVersion;

% Set the SupportedPlatforms
Expand Down

0 comments on commit e08319c

Please sign in to comment.