Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Mar 15, 2024
1 parent 4e96cd5 commit c1fff69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ runs:
run: |
wget -O C:\Windows\System32\run-matlab-command.exe https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/win64/run-matlab-command.exe
echo "MATLAB_COMMAND=C:\Windows\System32\run-matlab-command.exe" >> $env:GITHUB_ENV
echo "%MATLAB_HOME%\bin" >> $env:GITHUB_PATH
echo "${env:MATLAB_HOME}\bin" >> $env:GITHUB_PATH
shell: powershell
if: matrix.language == 'matlab' && runner.os == 'Windows'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ jobs:
# See:
# - https://github.com/zeroc-ice/ice/issues/1653
# - https://github.com/zeroc-ice/ice/issues/1745
flags: "--rfilter IceGrid/replication --rfilter csharp/IceSSL/configuration ${{ matrix.test_flags }}"
flags: "--rfilter IceGrid/replication --rfilter csharp/IceSSL/configuration --rfilter matlab/Ice/slicing ${{ matrix.test_flags }}"
2 changes: 1 addition & 1 deletion scripts/Util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4296,7 +4296,7 @@ class Config(CppBasedClientMapping.Config):
mappingDesc = "MATLAB"

def getCommandLine(self, current, process, exe, args):
# The MATLAB_CMD environment variable can be used to specify the MATLAB command
# The MATLAB_COMMAND environment variable can be used to specify the MATLAB command
# This is currently used for GitHub Actions to specify the path to a custom MATLAB executable
# which is required to run the tests and does not need any additional arguments.
matlabCmd = os.getenv("MATLAB_COMMAND")
Expand Down

0 comments on commit c1fff69

Please sign in to comment.