Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/test-matlab/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ runs:
steps:
# Install MATLAB
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
uses: matlab-actions/setup-matlab@v3
with:
release: ${{ inputs.matlab-version }}
products: Image_Processing_Toolbox Parallel_Computing_Toolbox Optimization_Toolbox Global_Optimization_Toolbox

# Runs test command
- name: Run Tests
uses: matlab-actions/run-command@v2
uses: matlab-actions/run-command@v3
with:
command: matRad_runTests('test',true);

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ jobs:
fi

- name: Install MATLAB with Compiler
uses: matlab-actions/setup-matlab@v2
uses: matlab-actions/setup-matlab@v3
with:
release: latest
release: ${{ matrix.platform == 'macos-intel' && 'R2025b' || 'latest' }}
products: MATLAB_Compiler MATLAB_Compiler_SDK Image_Processing_Toolbox Parallel_Computing_Toolbox Optimization_Toolbox Global_Optimization_Toolbox

- name: Build Standalone
uses: matlab-actions/run-command@v2
uses: matlab-actions/run-command@v3
with:
command: |
matRad_buildStandalone('isRelease',${{ steps.build-type.outputs.is_release }},'verbose',true,'json','build_result.json')
Expand Down
Loading