Skip to content

Commit

Permalink
debug 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rdzman committed Feb 19, 2024
1 parent c0bc445 commit 520a6ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
os: [macos-12, macos-13, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest]

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ runs:
steps:
- name: Get run-matlab-command
run: |
${{ runner.os == 'ubuntu' }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/glnxa64/run-matlab-command
${{ runner.os == 'macos' }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/maca64/run-matlab-command
${{ startsWith(runner.os, 'ubuntu') }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/glnxa64/run-matlab-command
${{ startsWith(runner.os, 'macos') }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/maca64/run-matlab-command
chmod +x /usr/local/bin/run-matlab-command
shell: bash
- name: Configure MATLAB
Expand Down

0 comments on commit 520a6ed

Please sign in to comment.